Skip to content

Commit 3b57e7f

Browse files
authored
Releasing v0.3.1 (#21)
1 parent 555c981 commit 3b57e7f

4 files changed

Lines changed: 10 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
88

99
## [Unreleased]
1010

11+
## [0.3.1]
12+
13+
### Changed
14+
15+
- `ExponentialStartStrategy` func now takes an `interface{ Start() error }` as input. ([#20](https://github.com/gojek/courier-go/pull/20))
16+
1117
## [0.3.0]
1218

1319
### Changed
@@ -45,6 +51,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
4551

4652
Initial Release
4753

54+
[0.3.1]: https://github.com/gojek/courier-go/-/releases/v0.3.1
4855
[0.3.0]: https://github.com/gojek/courier-go/-/releases/v0.3.0
4956
[0.2.1]: https://github.com/gojek/courier-go/-/releases/v0.2.1
5057
[0.2.0]: https://github.com/gojek/courier-go/-/releases/v0.2.0

otelcourier/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/gojek/courier-go/otelcourier
33
go 1.16
44

55
require (
6-
github.com/gojek/courier-go v0.3.0
6+
github.com/gojek/courier-go v0.3.1
77
github.com/stretchr/testify v1.7.1
88
go.opentelemetry.io/otel v1.6.1
99
go.opentelemetry.io/otel/sdk v1.6.1

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ package courier
22

33
// Version can be used to get the current courier library version
44
func Version() string {
5-
return "0.3.0"
5+
return "0.3.1"
66
// This string is updated by the pre_release.sh script during release
77
}

xds/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.16
44

55
require (
66
github.com/envoyproxy/go-control-plane v0.10.1
7-
github.com/gojek/courier-go v0.3.0
7+
github.com/gojek/courier-go v0.3.1
88
github.com/golang/protobuf v1.5.0
99
github.com/stretchr/testify v1.7.0
1010
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4 // indirect

0 commit comments

Comments
 (0)