This commit is contained in:
Peter Taoussanis 2015-12-13 10:31:56 +07:00
parent e48dea517e
commit d08b0bd174
3 changed files with 24 additions and 6 deletions

View File

@ -1,8 +1,26 @@
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
## v4.2.0 / 2015 Dec 27
> This is a non-breaking feature release
* **Change**: switch default timestamp timezone from JVM default to UTC [#135]
* **Change**: switch default timestamp pattern from `yy-MMM-dd` -> `yy-MM-dd pattern` (easier to sort) [#135]
* **New**: `swap-config!` now supports &args [#137 @rsslldnphy]
* **New**: rotor appender now creates necessary paths [#140 @dsapala]
* **New**: faster (transducer-based) string joins with Clojure 1.7+ [#133]
* **New**: records now get a human-readable string representation [#133]
* **Fix**: application slowdown due to agents shutdown [#141 @ryfow]
```clojure
[com.taoensso/timbre "4.2.0"]
```
## v4.1.5 / 2015 Dec 27
> This is a hotfix release to help fix https://github.com/fzakaria/slf4j-timbre/issues/8
> This is a non-breaking hotfix release
* Assist fix of https://github.com/fzakaria/slf4j-timbre/issues/8
```clojure
[com.taoensso/timbre "4.1.5"]

View File

@ -1,10 +1,10 @@
**[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contrib](#contact--contributing) | current [Break Version][]:
```clojure
[com.taoensso/timbre "4.1.5"] ; Stable, see CHANGELOG for details
[com.taoensso/timbre "4.2.0"] ; Stable, see CHANGELOG for details
```
# Timbre, a (sane) Clojure/Script logging & profiling library
# Timbre, a pure Clojure/Script logging library
Java logging is a mess of complexity that buys you _nothing_. It can be comically hard to get even the simplest logging working, and it's no better at scale.
@ -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.1.5"] ; Add to your project.clj :dependencies
[com.taoensso/timbre "4.2.0"] ; Add to your project.clj :dependencies
(ns my-clj-ns ; Clj ns => use `:refer`
(:require

View File

@ -1,6 +1,6 @@
(defproject com.taoensso/timbre "4.1.5"
(defproject com.taoensso/timbre "4.2.0"
:author "Peter Taoussanis <https://www.taoensso.com>"
:description "Clojure/Script logging & profiling library"
:description "Pure Clojure/Script logging library"
:url "https://github.com/ptaoussanis/timbre"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"