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

Commit

Permalink
Merge pull request #2173 from gobuffalo/development
Browse files Browse the repository at this point in the history
v0.18.0
  • Loading branch information
paganotoni authored Nov 24, 2021
2 parents 36b8adf + f393e8a commit 51fe8ac
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -244,8 +244,8 @@ func defaultErrorHandler(status int, origErr error, c Context) error {
return err
}

c.Response().Write([]byte(t))
return nil
_, err = c.Response().Write([]byte(t))
return err
}
return nil
}
Expand Down
1 change: 1 addition & 0 deletions mail/internal/mail/mime.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build go1.5
// +build go1.5

package mail
Expand Down
2 changes: 1 addition & 1 deletion runtime/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package runtime

// Version is the current version of the buffalo binary
var Version = "v0.17.5"
var Version = "v0.18.0"

0 comments on commit 51fe8ac

Please sign in to comment.