This commit is contained in:
Peter Taoussanis 2015-06-13 19:27:31 +07:00
parent 563bdfe19c
commit af69046a43
3 changed files with 14 additions and 3 deletions

View File

@ -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.0.1 / 2015 June 13
> This is a minor, non-breaking feature release
* **New**: add `get-env`, `log-env` macros [#103 @RickMoynihan]
```clojure
[com.taoensso/timbre "4.0.1"]
```
## 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.

View File

@ -1,7 +1,7 @@
**[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contrib](#contact--contributing) | current [Break Version][]:
```clojure
[com.taoensso/timbre "4.0.0"] ; BREAKING, please see CHANGELOG for details
[com.taoensso/timbre "4.0.1"] ; BREAKING, please see CHANGELOG for details
[com.taoensso/timbre "3.4.0"] ; Legacy
```
@ -36,7 +36,7 @@ Timbre offers an alternative **all Clojure/Script** logging experience that's fa
Add the necessary dependency to your [Leiningen][] `project.clj` and use the supplied ns-import helper:
```clojure
[com.taoensso/timbre "4.0.0"] ; Add to your project.clj :dependencies
[com.taoensso/timbre "4.0.1"] ; Add to your project.clj :dependencies
(ns my-clj-ns ; Clj ns => use `:refer`
(:require

View File

@ -1,4 +1,4 @@
(defproject com.taoensso/timbre "4.0.0"
(defproject com.taoensso/timbre "4.0.1"
:author "Peter Taoussanis <https://www.taoensso.com>"
:description "Clojure/Script logging & profiling library"
:url "https://github.com/ptaoussanis/timbre"