This commit is contained in:
Peter Taoussanis 2014-02-23 20:11:37 +07:00
parent f879882e8f
commit 0250d57cbe
3 changed files with 12 additions and 7 deletions

View File

@ -1,12 +1,17 @@
## Pending / unreleaded ## v3.1.0 / 2014 Feb 23
### New
* #47 Added `taoensso.timbre.profiling/pspy*` fn.
### Changes ### Changes
* Make Carmine appender resistant to unexpected log entry thaw errors. * Made Carmine appender resistant to unexpected log entry thaw errors.
* Moved most utils to external `encore` dependency.
### Fixes ### Fixes
* #50 Fix rotor appender so that it respects :fmt-output-opts (kenrestivo). * #50 Fixed rotor appender so that it respects :fmt-output-opts (kenrestivo).
## v3.0.0 / 2014 Jan 30 ## v3.0.0 / 2014 Jan 30

View File

@ -1,7 +1,7 @@
**[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contributing](#contact--contributing) | current ([semantic][]) version: **[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contributing](#contact--contributing) | current ([semantic][]) version:
```clojure ```clojure
[com.taoensso/timbre "3.0.1"] ; Non-breaking upgrade - see CHANGELOG for details [com.taoensso/timbre "3.1.0"] ; 3.x is a non-breaking upgrade - see CHANGELOG for details
``` ```
Appender authors: please see [here](https://github.com/ptaoussanis/timbre/issues/41) about migrating Timbre 2.x appenders to 3.x's recommended style. Appender authors: please see [here](https://github.com/ptaoussanis/timbre/issues/41) about migrating Timbre 2.x appenders to 3.x's recommended style.
@ -30,7 +30,7 @@ Logging with Java can be maddeningly, unnecessarily hard. Particularly if all yo
Add the necessary dependency to your [Leiningen][] `project.clj` and use the supplied ns-import helper: Add the necessary dependency to your [Leiningen][] `project.clj` and use the supplied ns-import helper:
```clojure ```clojure
[com.taoensso/timbre "3.0.1"] ; project.clj [com.taoensso/timbre "3.1.0"] ; project.clj
(ns my-app (:require [taoensso.timbre :as timbre])) ; Your ns (ns my-app (:require [taoensso.timbre :as timbre])) ; Your ns
(timbre/refer-timbre) ; Provides useful Timbre aliases in this ns (timbre/refer-timbre) ; Provides useful Timbre aliases in this ns
@ -293,4 +293,4 @@ Copyright © 2012-2014 Peter Taoussanis. Distributed under the [Eclipse Publ
[issues page]: <https://github.com/ptaoussanis/nippy/issues> [issues page]: <https://github.com/ptaoussanis/nippy/issues>
[commit history]: <https://github.com/ptaoussanis/nippy/commits/master> [commit history]: <https://github.com/ptaoussanis/nippy/commits/master>
[taoensso.com]: <https://www.taoensso.com> [taoensso.com]: <https://www.taoensso.com>
[Eclipse Public License]: <https://raw2.github.com/ptaoussanis/nippy/master/LICENSE> [Eclipse Public License]: <https://raw2.github.com/ptaoussanis/nippy/master/LICENSE>

View File

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