Skip to content

Commit 811d09a

Browse files
committed
v0.5.0
1 parent 382fcf8 commit 811d09a

File tree

3 files changed

+23
-10
lines changed

3 files changed

+23
-10
lines changed

Diff for: CHANGELOG.md

+20-9
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,27 @@
44
## [Unreleased]
55

66

7-
<a name="v0.4.1"></a>
8-
## [v0.4.1] - 2020-07-22
7+
<a name="v0.5.0"></a>
8+
## [v0.5.0] - 2020-07-30
99
### Actions
10-
- add release target to Makefile
10+
- add CHANGELOG.md and a release target to Makefile ([#45](https://github.com/boson-project/faas/issues/45))
1111

12-
### Fixup
13-
- release commit message
12+
### Build
13+
- reduce build verbosity for cross-platform compilations
14+
- update container latest tag when releasing
15+
16+
### Chore
17+
- add `-race` flag for tests
18+
- add lint to GH actions CI
1419

15-
### Release
16-
- v0.4.1
20+
### Feat
21+
- build and release cross-platform binaries
22+
- version prints semver first
23+
- http template for Quarkus stack
24+
25+
### Fix
26+
- build using environmentally-defined settings for GOOS and GOARCH by default
27+
- version flag
1728

1829

1930
<a name="v0.4.0"></a>
@@ -99,8 +110,8 @@
99110
- add kn-based implementation
100111

101112

102-
[Unreleased]: https://github.com/boson-project/faas/compare/v0.4.1...HEAD
103-
[v0.4.1]: https://github.com/boson-project/faas/compare/v0.4.0...v0.4.1
113+
[Unreleased]: https://github.com/boson-project/faas/compare/v0.5.0...HEAD
114+
[v0.5.0]: https://github.com/boson-project/faas/compare/v0.4.0...v0.5.0
104115
[v0.4.0]: https://github.com/boson-project/faas/compare/v0.3.0...v0.4.0
105116
[v0.3.0]: https://github.com/boson-project/faas/compare/v0.2.2...v0.3.0
106117
[v0.2.2]: https://github.com/boson-project/faas/compare/v0.2.1...v0.2.2

Diff for: go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ require (
2020
github.com/tsuyoshiwada/go-gitcmd v0.0.0-20180205145712-5f1f5f9475df // indirect
2121
github.com/urfave/cli v1.22.4 // indirect
2222
golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7
23-
golang.org/x/sys v0.0.0-20200722175500-76b94024e4b6 // indirect
23+
golang.org/x/sys v0.0.0-20200728102440-3e129f6d46b1 // indirect
2424
gopkg.in/AlecAivazis/survey.v1 v1.8.8 // indirect
2525
gopkg.in/kyokomi/emoji.v1 v1.5.1 // indirect
2626
gopkg.in/yaml.v2 v2.3.0

Diff for: go.sum

+2
Original file line numberDiff line numberDiff line change
@@ -724,6 +724,8 @@ golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd h1:xhmwyvizuTgC2qz7ZlMluP20u
724724
golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
725725
golang.org/x/sys v0.0.0-20200722175500-76b94024e4b6 h1:X9xIZ1YU8bLZA3l6gqDUHSFiD0GFI9S548h6C8nDtOY=
726726
golang.org/x/sys v0.0.0-20200722175500-76b94024e4b6/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
727+
golang.org/x/sys v0.0.0-20200728102440-3e129f6d46b1 h1:sIky/MyNRSHTrdxfsiUSS4WIAMvInbeXljJz+jDjeYE=
728+
golang.org/x/sys v0.0.0-20200728102440-3e129f6d46b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
727729
golang.org/x/text v0.0.0-20160726164857-2910a502d2bf/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
728730
golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
729731
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=

0 commit comments

Comments
 (0)