mirror of https://github.com/status-im/timbre.git
v4.1.1
This commit is contained in:
parent
a991195549
commit
7ae6cfc161
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -1,5 +1,16 @@
|
||||||
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
|
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
|
||||||
|
|
||||||
|
## v4.1.1 / 2015 Aug 16
|
||||||
|
|
||||||
|
> This is a non-breaking hotfix release
|
||||||
|
|
||||||
|
* **Fix**: shutdown-agents shutdown hook can interfere with other important hooks [#127 @hadronzoo]
|
||||||
|
|
||||||
|
```clojure
|
||||||
|
[com.taoensso/timbre "4.1.1"]
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## v4.1.0 / 2015 Aug 7
|
## v4.1.0 / 2015 Aug 7
|
||||||
|
|
||||||
> This is a non-breaking feature release
|
> This is a non-breaking feature release
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
**[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contrib](#contact--contributing) | current [Break Version][]:
|
**[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contrib](#contact--contributing) | current [Break Version][]:
|
||||||
|
|
||||||
```clojure
|
```clojure
|
||||||
[com.taoensso/timbre "4.1.0"] ; Stable, see CHANGELOG for details
|
[com.taoensso/timbre "4.1.1"] ; Stable, see CHANGELOG for details
|
||||||
[com.taoensso/timbre "3.4.0"] ; Legacy
|
[com.taoensso/timbre "3.4.0"] ; Legacy
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ Timbre offers an **all Clojure/Script** alternative that **works out the box**.
|
||||||
Add the necessary dependency to your [Leiningen][] `project.clj` and `require` the necessary namespaces:
|
Add the necessary dependency to your [Leiningen][] `project.clj` and `require` the necessary namespaces:
|
||||||
|
|
||||||
```clojure
|
```clojure
|
||||||
[com.taoensso/timbre "4.1.0"] ; Add to your project.clj :dependencies
|
[com.taoensso/timbre "4.1.1"] ; Add to your project.clj :dependencies
|
||||||
|
|
||||||
(ns my-clj-ns ; Clj ns => use `:refer`
|
(ns my-clj-ns ; Clj ns => use `:refer`
|
||||||
(:require
|
(:require
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
(defproject com.taoensso/timbre "4.1.0"
|
(defproject com.taoensso/timbre "4.1.1"
|
||||||
:author "Peter Taoussanis <https://www.taoensso.com>"
|
:author "Peter Taoussanis <https://www.taoensso.com>"
|
||||||
:description "Clojure/Script logging & profiling library"
|
:description "Clojure/Script logging & profiling library"
|
||||||
:url "https://github.com/ptaoussanis/timbre"
|
:url "https://github.com/ptaoussanis/timbre"
|
||||||
|
|
Loading…
Reference in New Issue