mirror of https://github.com/status-im/timbre.git
Merge branch 'dev'
This commit is contained in:
commit
66df24e8cc
|
@ -1,6 +1,6 @@
|
|||
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
|
||||
|
||||
## v4.0.0-beta4 / 2015 May 28
|
||||
## v4.0.0 / 2015 June 10
|
||||
|
||||
> This is a **MAJOR** update. Your custom appenders **WILL BREAK**. Your configuration **MIGHT BREAK**. Your call sites should be fine. I've updated all bundled appenders, but **haven't tested** any 3rd-party appenders.
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
|||
* **Fix**: auto shutdown agents to prevent slow app shutdown [#61]
|
||||
|
||||
```clojure
|
||||
[com.taoensso/timbre "4.0.0-beta4"]
|
||||
[com.taoensso/timbre "4.0.0"]
|
||||
```
|
||||
|
||||
### Migration checklist
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
**[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contrib](#contact--contributing) | current [Break Version][]:
|
||||
|
||||
```clojure
|
||||
[com.taoensso/timbre "3.4.0"] ; Stable
|
||||
[com.taoensso/timbre "4.0.0-RC1"] ; BREAKING, please see CHANGELOG for details
|
||||
[com.taoensso/timbre "4.0.0"] ; BREAKING, please see CHANGELOG for details
|
||||
[com.taoensso/timbre "3.4.0"] ; Legacy
|
||||
```
|
||||
|
||||
# Timbre, a (sane) Clojure/Script logging & profiling library
|
||||
|
@ -36,7 +36,7 @@ Timbre brings functional, Clojure-y goodness to all your logging needs. It's fas
|
|||
Add the necessary dependency to your [Leiningen][] `project.clj` and use the supplied ns-import helper:
|
||||
|
||||
```clojure
|
||||
[com.taoensso/timbre "4.0.0-RC1"] ; Add to your project.clj :dependencies
|
||||
[com.taoensso/timbre "4.0.0"] ; Add to your project.clj :dependencies
|
||||
|
||||
(ns my-clj-ns ; Clj ns => use `:refer`
|
||||
(:require
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
(defproject com.taoensso/timbre "4.0.0-RC1"
|
||||
(defproject com.taoensso/timbre "4.0.0"
|
||||
:author "Peter Taoussanis <https://www.taoensso.com>"
|
||||
:description "Clojure/Script logging & profiling library"
|
||||
:url "https://github.com/ptaoussanis/timbre"
|
||||
|
@ -12,7 +12,7 @@
|
|||
|
||||
:dependencies
|
||||
[[org.clojure/clojure "1.4.0"]
|
||||
[com.taoensso/encore "1.36.0"]
|
||||
[com.taoensso/encore "1.37.0"]
|
||||
[io.aviso/pretty "0.1.18"]]
|
||||
|
||||
:plugins
|
||||
|
|
Loading…
Reference in New Issue