Skip to content

Commit

Permalink
Merge pull request #10 from gojekfarm/pre_release_v0.2.0
Browse files Browse the repository at this point in the history
Releasing v0.2.0
  • Loading branch information
sonnes authored Mar 21, 2023
2 parents 70f1014 + f849439 commit 9a90df3
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## [Unreleased]

## [0.2.0]

### Added
- [`xkafka`](./xkafka) Added `xkafka` package with `Producer` and `Consumer` implementations that support middleware & HTTP-like handlers.

## [0.1.1]

### Changed
Expand All @@ -21,7 +26,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.1.1...HEAD
[Unreleased]: https://github.com/gojekfarm/xtools/compare/v0.2.0...HEAD
[0.2.0]: https://github.com/gojekfarm/xtools/releases/tag/v0.2.0
[0.1.1]: https://github.com/gojekfarm/xtools/releases/tag/v0.1.1
[0.1.0]: https://github.com/gojekfarm/xtools/releases/tag/v0.1.0

2 changes: 1 addition & 1 deletion examples/xkafka/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ replace (

require (
github.com/gojekfarm/xrun v0.3.0
github.com/gojekfarm/xtools/xkafka v0.0.0-00010101000000-000000000000
github.com/gojekfarm/xtools/xkafka v0.2.0
github.com/rs/xid v1.4.0
github.com/rs/zerolog v1.29.0
)
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.1.1"
return "0.2.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 @@ -5,7 +5,7 @@ go 1.19
replace github.com/gojekfarm/xtools/xkafka => ../

require (
github.com/gojekfarm/xtools/xkafka v0.0.0-00010101000000-000000000000
github.com/gojekfarm/xtools/xkafka v0.2.0
github.com/stretchr/testify v1.8.1
)

Expand Down

0 comments on commit 9a90df3

Please sign in to comment.