Skip to content

Commit

Permalink
release: prepare for v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
HandOfGod94 committed Jun 13, 2022
1 parent 3b5130a commit 41913f1
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ scoop install kafkatail
#### Go Toolchain
+ For Go 1.16 or higher
```sh
go install github.com/handofgod94/kafkatail@v0.1.5
go install github.com/handofgod94/kafkatail@v0.2.0
```

+ For go version <= 1.15
```sh
GO111MODULE=on go get github.com/handofgod94/kafkatail@v0.1.5
GO111MODULE=on go get github.com/handofgod94/kafkatail@v0.2.0
```
The go binary will be installed in `$GOPATH/bin`

Expand All @@ -67,7 +67,7 @@ scoop install kafkatail

`$ kafkatail --version`
```
kafkatail version 0.1.5
kafkatail version 0.2.0
```
### Usage
Expand Down
4 changes: 0 additions & 4 deletions changes/unreleased/Added-20220612-225022.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions changes/unreleased/Changed-20220613-164318.yaml

This file was deleted.

7 changes: 7 additions & 0 deletions changes/v0.2.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
## v0.2.0 - 2022-06-13

### Added
* ability to tail from multiple partitions without setting group_id, using `--partition=all` flag

### Changed
* Go version upgraded from 1.16 to 1.18
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var (
partition = PartitionFlag{value: mo.Right[int]("all")}
)

const appVersion = "dev"
const appVersion = "0.2.0"

type status = int

Expand Down
2 changes: 1 addition & 1 deletion features/version.feature
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ Feature: kafkatail version
When I successfully run `kafkatail --version`
Then the output should contain:
"""
kafkatail version dev
kafkatail version 0.2.0
"""

0 comments on commit 41913f1

Please sign in to comment.