Skip to content

Commit 0c56bd4

Browse files
authored
Merge pull request #70 from gojek/pre_release_v0.7.7
Releasing v0.7.7
2 parents 9de7392 + eb9bea3 commit 0c56bd4

6 files changed

Lines changed: 12 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
77
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88

99
## [Unreleased]
10+
## [0.7.7]
11+
12+
### Changed
13+
- Add connection pooling support for courier ([#66] https://github.com/gojek/courier-go/pull/66)
14+
1015
## [0.7.6]
1116

1217
### Changed
@@ -155,7 +160,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
155160

156161
Initial Release
157162

158-
[Unreleased]: https://github.com/gojek/courier-go/compare/v0.7.6...HEAD
163+
[Unreleased]: https://github.com/gojek/courier-go/compare/v0.7.7...HEAD
164+
[0.7.7]: https://github.com/gojek/courier-go/releases/tag/v0.7.7
159165
[0.7.6]: https://github.com/gojek/courier-go/releases/tag/v0.7.6
160166
[0.7.5]: https://github.com/gojek/courier-go/releases/tag/v0.7.5
161167
[0.7.4]: https://github.com/gojek/courier-go/releases/tag/v0.7.4

consul/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/consul
33
go 1.24
44

55
require (
6-
github.com/gojek/courier-go v0.7.6
6+
github.com/gojek/courier-go v0.7.7
77
github.com/hashicorp/consul/api v1.32.1
88
)
99

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.24
44

55
require (
6-
github.com/gojek/courier-go v0.7.6
6+
github.com/gojek/courier-go v0.7.7
77
github.com/prometheus/client_golang v1.18.0
88
github.com/prometheus/client_model v0.6.0
99
github.com/stretchr/testify v1.9.0

slog/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/slog
33
go 1.24
44

55
require (
6-
github.com/gojek/courier-go v0.7.6
6+
github.com/gojek/courier-go v0.7.7
77
github.com/stretchr/testify v1.10.0
88
)
99

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.7.6"
5+
return "0.7.7"
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.24
44

55
require (
66
github.com/envoyproxy/go-control-plane v0.12.0
7-
github.com/gojek/courier-go v0.7.6
7+
github.com/gojek/courier-go v0.7.7
88
github.com/golang/protobuf v1.5.4
99
github.com/stretchr/testify v1.9.0
1010
google.golang.org/genproto/googleapis/rpc v0.0.0-20240227224415-6ceb2ff114de

0 commit comments

Comments
 (0)