Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pre release v0.6.0 #33

Merged
merged 2 commits into from
Jan 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## [Unreleased]

## [0.6.0]

### Added

- [`xload`](./xload) Add [viper](https://github.com/spf13/viper) provider. ([#32](https://github.com/gojekfarm/xtools/pull/32))

### Changed

- [`xload`](./xload) Add context to errors to help with debugging. ([#31](https://github.com/gojekfarm/xtools/pull/31))

## [0.5.0]

### Changed
Expand Down Expand Up @@ -65,6 +75,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
- [`xproto`](./xproto) package added

[Unreleased]: https://github.com/gojekfarm/xtools/compare/v0.5.0...HEAD
[0.6.0]: https://github.com/gojekfarm/xtools/releases/tag/v0.6.0
[0.5.0]: https://github.com/gojekfarm/xtools/releases/tag/v0.5.0
[0.4.1]: https://github.com/gojekfarm/xtools/releases/tag/v0.4.1
[0.4.0]: https://github.com/gojekfarm/xtools/releases/tag/v0.4.0
Expand Down
2 changes: 1 addition & 1 deletion examples/xkafka/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ replace (
require (
github.com/confluentinc/confluent-kafka-go v1.9.2
github.com/gojekfarm/xrun v0.3.0
github.com/gojekfarm/xtools/xkafka v0.5.0
github.com/gojekfarm/xtools/xkafka v0.6.0
github.com/lmittmann/tint v1.0.3
github.com/rs/xid v1.4.0
github.com/urfave/cli/v2 v2.23.7
Expand Down
4 changes: 2 additions & 2 deletions examples/xload/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ replace (
)

require (
github.com/gojekfarm/xtools/xload v0.5.0
github.com/gojekfarm/xtools/xload/providers/yaml v0.5.0
github.com/gojekfarm/xtools/xload v0.6.0
github.com/gojekfarm/xtools/xload/providers/yaml v0.6.0
)

require (
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ package xtools

// Version can be used to get the current xtools library version
func Version() string {
return "0.5.0"
return "0.6.0"
// This string is updated by the pre_release.sh script during release
}
2 changes: 1 addition & 1 deletion xkafka/middleware/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ toolchain go1.21.0
replace github.com/gojekfarm/xtools/xkafka => ../

require (
github.com/gojekfarm/xtools/xkafka v0.5.0
github.com/gojekfarm/xtools/xkafka v0.6.0
github.com/stretchr/testify v1.8.1
)

Expand Down
2 changes: 1 addition & 1 deletion xkafka/middleware/prometheus/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ toolchain go1.21.0
replace github.com/gojekfarm/xtools/xkafka => ../../

require (
github.com/gojekfarm/xtools/xkafka v0.5.0
github.com/gojekfarm/xtools/xkafka v0.6.0
github.com/prometheus/client_golang v1.14.0
github.com/stretchr/testify v1.8.1
)
Expand Down
2 changes: 1 addition & 1 deletion xkafka/middleware/zerolog/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ toolchain go1.21.0
replace github.com/gojekfarm/xtools/xkafka => ../../

require (
github.com/gojekfarm/xtools/xkafka v0.5.0
github.com/gojekfarm/xtools/xkafka v0.6.0
github.com/rs/zerolog v1.29.0
)

Expand Down
2 changes: 1 addition & 1 deletion xload/providers/cached/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.20
replace github.com/gojekfarm/xtools/xload => ../..

require (
github.com/gojekfarm/xtools/xload v0.5.0
github.com/gojekfarm/xtools/xload v0.6.0
github.com/stretchr/testify v1.8.4
)

Expand Down
2 changes: 1 addition & 1 deletion xload/providers/viper/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.21.3
replace github.com/gojekfarm/xtools/xload => ../..

require (
github.com/gojekfarm/xtools/xload v0.5.0
github.com/gojekfarm/xtools/xload v0.6.0
github.com/spf13/viper v1.18.2
github.com/stretchr/testify v1.8.4
)
Expand Down
2 changes: 1 addition & 1 deletion xload/providers/yaml/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.20
replace github.com/gojekfarm/xtools/xload => ../..

require (
github.com/gojekfarm/xtools/xload v0.5.0
github.com/gojekfarm/xtools/xload v0.6.0
gopkg.in/yaml.v3 v3.0.1
)

Expand Down
2 changes: 1 addition & 1 deletion xpod/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/gojekfarm/xtools/xpod
go 1.18

require (
github.com/gojekfarm/xtools/generic v0.5.0
github.com/gojekfarm/xtools/generic v0.6.0
github.com/stretchr/testify v1.8.2
)

Expand Down
Loading