mirror of https://github.com/status-im/timbre.git
v2.7.1
This commit is contained in:
parent
e48128c6d6
commit
a8ebec06d5
|
@ -1,4 +1,4 @@
|
||||||
## v2.6.3 → v2.7.0
|
## v2.6.3 → v2.7.1
|
||||||
* Core: `getHostName` no longer runs on the main thread for better Android compatibility (AdamClements).
|
* Core: `getHostName` no longer runs on the main thread for better Android compatibility (AdamClements).
|
||||||
* Profiling: added `defnp` macro.
|
* Profiling: added `defnp` macro.
|
||||||
* Profiling: fix compile-time name creation: now runtime (aperiodic).
|
* Profiling: fix compile-time name creation: now runtime (aperiodic).
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
**[API docs](http://ptaoussanis.github.io/timbre/)** | **[CHANGELOG](https://github.com/ptaoussanis/timbre/blob/master/CHANGELOG.md)** | [contact & contributing](#contact--contributing) | [other Clojure libs](https://www.taoensso.com/clojure-libraries) | [Twitter](https://twitter.com/#!/ptaoussanis) | current [semantic](http://semver.org/) version:
|
**[API docs](http://ptaoussanis.github.io/timbre/)** | **[CHANGELOG](https://github.com/ptaoussanis/timbre/blob/master/CHANGELOG.md)** | [contact & contributing](#contact--contributing) | [other Clojure libs](https://www.taoensso.com/clojure-libraries) | [Twitter](https://twitter.com/#!/ptaoussanis) | current [semantic](http://semver.org/) version:
|
||||||
|
|
||||||
```clojure
|
```clojure
|
||||||
[com.taoensso/timbre "2.7.0"] ; See CHANGELOG for breaking changes since 1.x
|
[com.taoensso/timbre "2.7.1"] ; See CHANGELOG for breaking changes since 1.x
|
||||||
```
|
```
|
||||||
|
|
||||||
# Timbre, a (sane) Clojure logging & profiling library
|
# Timbre, a (sane) Clojure logging & profiling library
|
||||||
|
@ -27,7 +27,7 @@ Logging with Java can be maddeningly, unnecessarily hard. Particularly if all yo
|
||||||
Add the necessary dependency to your [Leiningen](http://leiningen.org/) `project.clj` and `require` the library in your ns:
|
Add the necessary dependency to your [Leiningen](http://leiningen.org/) `project.clj` and `require` the library in your ns:
|
||||||
|
|
||||||
```clojure
|
```clojure
|
||||||
[com.taoensso/timbre "2.7.0"] ; project.clj
|
[com.taoensso/timbre "2.7.1"] ; project.clj
|
||||||
(ns my-app (:require [taoensso.timbre :as timbre
|
(ns my-app (:require [taoensso.timbre :as timbre
|
||||||
:refer (trace debug info warn error fatal spy with-log-level)])) ; ns
|
:refer (trace debug info warn error fatal spy with-log-level)])) ; ns
|
||||||
```
|
```
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
(defproject com.taoensso/timbre "2.7.0"
|
(defproject com.taoensso/timbre "2.7.1"
|
||||||
:description "Clojure logging & profiling library"
|
:description "Clojure logging & profiling library"
|
||||||
:url "https://github.com/ptaoussanis/timbre"
|
:url "https://github.com/ptaoussanis/timbre"
|
||||||
:license {:name "Eclipse Public License"
|
:license {:name "Eclipse Public License"
|
||||||
|
|
Loading…
Reference in New Issue