Skip to content

Commit

Permalink
release 0.9.16
Browse files Browse the repository at this point in the history
  • Loading branch information
qiangyt committed Oct 21, 2020
1 parent 51fbed8 commit 98bb246
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,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.15.1/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.16/jog.$(echo `uname -s` | tr A-Z a-z) -o /usr/local/bin/jog
sudo chmod +x /usr/local/bin/jog
```

Expand Down
9 changes: 9 additions & 0 deletions RELEASE_HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# v0.9.16
1. Enhancement: if a field doesnot explicitly appears in output print pattern, I name such field as `implicit field`,
and now implicit field will be printed in `${others}`.
This is incompatible behavior - for old versions, implicit fields are hidden. Now begins from this version, to hide
the implicit field, must set `print` attribute as `false`. There're examples in default configuration template.
2. Refine default template: some fields are printed with different color and style, some fields are hidden if be implicit.
3. Fix: should not print a implicit field if its print attribute is false.
4. Fix: for bunyan logger, it logger field takes 'id' as name, but then not printed.

# v0.9.15.1
1. Fix: regression by regression by https://github.com/qiangyt/jog/commit/cea3edbb5f6c19079e21688d657a85a5587d4394

Expand Down
2 changes: 1 addition & 1 deletion cmdline.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (

const (
// AppVersion ...
AppVersion = "v0.9.15.1"
AppVersion = "v0.9.16"
)

// PrintVersion ...
Expand Down

0 comments on commit 98bb246

Please sign in to comment.