mirror of https://github.com/status-im/timbre.git
v4.2.1
This commit is contained in:
parent
41b4a5dd75
commit
560fc46870
12
CHANGELOG.md
12
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**.
|
||||
|
||||
## v4.2.1 / 2016 Jan 14
|
||||
|
||||
> This is a non-breaking hotfix release
|
||||
|
||||
* **Fix**: compile issue with Clojure 1.6 [#146 @nicferrier]
|
||||
|
||||
```clojure
|
||||
[com.taoensso/timbre "4.2.1"]
|
||||
```
|
||||
|
||||
|
||||
## v4.2.0 / 2015 Dec 27
|
||||
|
||||
> This is a non-breaking feature release
|
||||
|
@ -16,6 +27,7 @@
|
|||
[com.taoensso/timbre "4.2.0"]
|
||||
```
|
||||
|
||||
|
||||
## v4.1.5 / 2015 Dec 27
|
||||
|
||||
> This is a non-breaking hotfix release
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
**[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contrib](#contact--contributing) | current [Break Version][]:
|
||||
|
||||
```clojure
|
||||
[com.taoensso/timbre "4.2.0"] ; Stable, see CHANGELOG for details
|
||||
[com.taoensso/timbre "4.2.1"] ; Stable, see CHANGELOG for details
|
||||
```
|
||||
|
||||
# Timbre, a pure Clojure/Script logging library
|
||||
|
@ -39,7 +39,7 @@ Your link here? | **PR's welcome!**
|
|||
Add the necessary dependency to your [Leiningen][] `project.clj` and `require` the necessary namespaces:
|
||||
|
||||
```clojure
|
||||
[com.taoensso/timbre "4.2.0"] ; Add to your project.clj :dependencies
|
||||
[com.taoensso/timbre "4.2.1"] ; Add to your project.clj :dependencies
|
||||
|
||||
(ns my-clj-ns ; Clj ns => use `:refer`
|
||||
(:require
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
(defproject com.taoensso/timbre "4.2.0"
|
||||
(defproject com.taoensso/timbre "4.2.1"
|
||||
:author "Peter Taoussanis <https://www.taoensso.com>"
|
||||
:description "Pure Clojure/Script logging library"
|
||||
:url "https://github.com/ptaoussanis/timbre"
|
||||
|
|
Loading…
Reference in New Issue