Skip to content

Commit

Permalink
v0.9.18
Browse files Browse the repository at this point in the history
  • Loading branch information
qiangyt committed Oct 23, 2020
1 parent 664382c commit 6a41d92
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Structured log, AKA. JSON line log, is great for log collectors but hard to read
Download the executable binary (https://github.com/qiangyt/jog/releases/) to $PATH. For ex., for Mac OSX and Linux,

```shell
sudo curl -L https://github.com/qiangyt/jog/releases/download/v0.9.17/jog.$(echo `uname -s` | tr A-Z a-z) -o /usr/local/bin/jog
sudo curl -L https://github.com/qiangyt/jog/releases/download/v0.9.18/jog.$(echo `uname -s` | tr A-Z a-z) -o /usr/local/bin/jog
sudo chmod +x /usr/local/bin/jog
```

Expand Down
5 changes: 4 additions & 1 deletion RELEASE_HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# v0.9.18 (2020-10-24)
1. New feature: filtering by time range (option `--before` and `--after`)

# v0.9.17 (2020-10-23)
1. New feature: filtering by logger level
1. New feature: filtering by logger level (option `-l`)

Comments:
The filtering feature initially works. So far it only supports filtering by logger level. Time range filtering should be ready soon (v0.9.18?). Then feature freezed before v1.0.0 ready.
Expand Down
2 changes: 1 addition & 1 deletion cmdline.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

const (
// AppVersion ...
AppVersion = "v0.9.17"
AppVersion = "v0.9.18"
)

// PrintVersion ...
Expand Down

0 comments on commit 6a41d92

Please sign in to comment.