Skip to content
This repository has been archived by the owner on Feb 24, 2024. It is now read-only.

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
markbates committed Aug 14, 2018
1 parent 8374362 commit e33b620
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
8 changes: 2 additions & 6 deletions grifts/release.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package grifts

import (
"strings"
"fmt"

"github.com/gobuffalo/buffalo/internal/release"
"github.com/markbates/grift/grift"
Expand Down Expand Up @@ -35,11 +35,7 @@ var _ = grift.Add("release", func(c *grift.Context) error {
},
})
p, err := release.PackAndCommit()
if err != nil {
if !strings.Contains(err.Error(), "nothing to commit, working tree clean") {
return errors.WithStack(err)
}
}
fmt.Println(err)
m.Add(p)

tr, err := release.TagRelease("master", v)
Expand Down
2 changes: 1 addition & 1 deletion runtime/version.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package runtime

// Version is the current version of the buffalo binary
const Version = "v0.12.4"
const Version = "v0.12.5"

// const Version = "development"

0 comments on commit e33b620

Please sign in to comment.