diff --git a/CHANGELOG.md b/CHANGELOG.md index bbcab56f34..ef1b63d9ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,16 +4,27 @@ ## [Unreleased] - -## [v0.4.1] - 2020-07-22 + +## [v0.5.0] - 2020-07-30 ### Actions -- add release target to Makefile +- add CHANGELOG.md and a release target to Makefile ([#45](https://github.com/boson-project/faas/issues/45)) -### Fixup -- release commit message +### Build +- reduce build verbosity for cross-platform compilations +- update container latest tag when releasing + +### Chore +- add `-race` flag for tests +- add lint to GH actions CI -### Release -- v0.4.1 +### Feat +- build and release cross-platform binaries +- version prints semver first +- http template for Quarkus stack + +### Fix +- build using environmentally-defined settings for GOOS and GOARCH by default +- version flag @@ -99,8 +110,8 @@ - add kn-based implementation -[Unreleased]: https://github.com/boson-project/faas/compare/v0.4.1...HEAD -[v0.4.1]: https://github.com/boson-project/faas/compare/v0.4.0...v0.4.1 +[Unreleased]: https://github.com/boson-project/faas/compare/v0.5.0...HEAD +[v0.5.0]: https://github.com/boson-project/faas/compare/v0.4.0...v0.5.0 [v0.4.0]: https://github.com/boson-project/faas/compare/v0.3.0...v0.4.0 [v0.3.0]: https://github.com/boson-project/faas/compare/v0.2.2...v0.3.0 [v0.2.2]: https://github.com/boson-project/faas/compare/v0.2.1...v0.2.2 diff --git a/go.mod b/go.mod index e1327a6859..609a529002 100644 --- a/go.mod +++ b/go.mod @@ -20,7 +20,7 @@ require ( github.com/tsuyoshiwada/go-gitcmd v0.0.0-20180205145712-5f1f5f9475df // indirect github.com/urfave/cli v1.22.4 // indirect golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7 - golang.org/x/sys v0.0.0-20200722175500-76b94024e4b6 // indirect + golang.org/x/sys v0.0.0-20200728102440-3e129f6d46b1 // indirect gopkg.in/AlecAivazis/survey.v1 v1.8.8 // indirect gopkg.in/kyokomi/emoji.v1 v1.5.1 // indirect gopkg.in/yaml.v2 v2.3.0 diff --git a/go.sum b/go.sum index ea80982d74..2ab99a260f 100644 --- a/go.sum +++ b/go.sum @@ -724,6 +724,8 @@ golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd h1:xhmwyvizuTgC2qz7ZlMluP20u golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200722175500-76b94024e4b6 h1:X9xIZ1YU8bLZA3l6gqDUHSFiD0GFI9S548h6C8nDtOY= golang.org/x/sys v0.0.0-20200722175500-76b94024e4b6/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200728102440-3e129f6d46b1 h1:sIky/MyNRSHTrdxfsiUSS4WIAMvInbeXljJz+jDjeYE= +golang.org/x/sys v0.0.0-20200728102440-3e129f6d46b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/text v0.0.0-20160726164857-2910a502d2bf/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=