Skip to content

Commit

Permalink
Pre release v0.4.1 (#20)
Browse files Browse the repository at this point in the history
* Releasing v0.4.1

* Updated Changelog
  • Loading branch information
sonnes authored Aug 24, 2023
1 parent 7c6d47c commit 3ce0d74
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 12 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## [Unreleased]

## [0.4.1]

### Changed

- [`xload`](./xload) `xload.Load` supports concurrent loading with `xload.Concurrency` option.
- [`xmap`](./xmap) Added `xmap.Values` function to get values from a map.

## [0.4.0]

### Added
Expand Down Expand Up @@ -50,7 +57,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
- [`generic`](./generic) package added
- [`xproto`](./xproto) package added

[Unreleased]: https://github.com/gojekfarm/xtools/compare/v0.4.0...HEAD
[Unreleased]: https://github.com/gojekfarm/xtools/compare/v0.4.1...HEAD
[0.4.0]: https://github.com/gojekfarm/xtools/releases/tag/v0.4.1
[0.4.0]: https://github.com/gojekfarm/xtools/releases/tag/v0.4.0
[0.3.0]: https://github.com/gojekfarm/xtools/releases/tag/v0.3.0
[0.2.0]: https://github.com/gojekfarm/xtools/releases/tag/v0.2.0
Expand Down
6 changes: 3 additions & 3 deletions examples/xkafka/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ replace (

require (
github.com/gojekfarm/xrun v0.3.0
github.com/gojekfarm/xtools/xkafka v0.4.0
github.com/gojekfarm/xtools/xkafka/middleware/prometheus v0.4.0
github.com/gojekfarm/xtools/xkafka/middleware/zerolog v0.4.0
github.com/gojekfarm/xtools/xkafka v0.4.1
github.com/gojekfarm/xtools/xkafka/middleware/prometheus v0.4.1
github.com/gojekfarm/xtools/xkafka/middleware/zerolog v0.4.1
github.com/prometheus/client_golang v1.14.0
github.com/rs/xid v1.4.0
github.com/rs/zerolog v1.29.0
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.4.0
github.com/gojekfarm/xtools/xload/providers/yaml v0.4.0
github.com/gojekfarm/xtools/xload v0.4.1
github.com/gojekfarm/xtools/xload/providers/yaml v0.4.1
)

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.4.0"
return "0.4.1"
// 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 @@ -5,7 +5,7 @@ go 1.19
replace github.com/gojekfarm/xtools/xkafka => ../

require (
github.com/gojekfarm/xtools/xkafka v0.4.0
github.com/gojekfarm/xtools/xkafka v0.4.1
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 @@ -5,7 +5,7 @@ go 1.19
replace github.com/gojekfarm/xtools/xkafka => ../../

require (
github.com/gojekfarm/xtools/xkafka v0.4.0
github.com/gojekfarm/xtools/xkafka v0.4.1
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 @@ -5,7 +5,7 @@ go 1.19
replace github.com/gojekfarm/xtools/xkafka => ../../

require (
github.com/gojekfarm/xtools/xkafka v0.4.0
github.com/gojekfarm/xtools/xkafka v0.4.1
github.com/rs/zerolog v1.29.0
)

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.4.0
github.com/gojekfarm/xtools/xload v0.4.1
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.4.0
github.com/gojekfarm/xtools/generic v0.4.1
github.com/stretchr/testify v1.8.2
)

Expand Down

0 comments on commit 3ce0d74

Please sign in to comment.