File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
4652Initial 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
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ module github.com/gojek/courier-go/otelcourier
33go 1.16
44
55require (
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
Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ package courier
22
33// Version can be used to get the current courier library version
44func 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}
Original file line number Diff line number Diff line change 44
55require (
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
You can’t perform that action at this time.
0 commit comments