mirror of https://github.com/status-im/timbre.git
v4.10.0
This commit is contained in:
parent
6a607c2e87
commit
22603b5134
13
CHANGELOG.md
13
CHANGELOG.md
|
@ -1,5 +1,18 @@
|
|||
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
|
||||
|
||||
## v4.10.0 / 2017 Apr 14
|
||||
|
||||
```clojure
|
||||
[com.taoensso/timbre "4.10.0"]
|
||||
```
|
||||
|
||||
> This is a **feature and maintenance release** that should be non-breaking
|
||||
|
||||
* [#215] **New**: Add 3rd-party appender for Sentry (@samuelotter)
|
||||
* [#199] **Fix**: Unintended warning output to cljs for compile-time elision
|
||||
* [#218] **Fix**: Nullary version of `timbre.tools.logging/use-timbre`
|
||||
* [#216] **Fix**: Cljs console appender: don't log superfluous 'null' for raw output (@michaelcameron)
|
||||
|
||||
## v4.8.0 / 2016 Dec 18
|
||||
|
||||
```clojure
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
**[CHANGELOG]** | [API] | current [Break Version]:
|
||||
|
||||
```clojure
|
||||
[com.taoensso/timbre "4.8.0"] ; Please check CHANGELOG for details
|
||||
[com.taoensso/timbre "4.10.0"] ; Please check CHANGELOG for details
|
||||
```
|
||||
|
||||
> Please consider helping to [support my continued open-source Clojure/Script work]?
|
||||
|
@ -51,7 +51,7 @@ Your link here? | **PR's welcome!**
|
|||
Add the necessary dependency to your project:
|
||||
|
||||
```clojure
|
||||
[com.taoensso/timbre "4.8.0"]
|
||||
[com.taoensso/timbre "4.10.0"]
|
||||
```
|
||||
|
||||
And setup your namespace imports:
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
(defproject com.taoensso/timbre "4.8.0"
|
||||
(defproject com.taoensso/timbre "4.10.0"
|
||||
:author "Peter Taoussanis <https://www.taoensso.com>"
|
||||
:description "Pure Clojure/Script logging library"
|
||||
:url "https://github.com/ptaoussanis/timbre"
|
||||
|
|
Loading…
Reference in New Issue