mirror of https://github.com/status-im/timbre.git
Merge branch 'dev'
This commit is contained in:
commit
6bf3e0b1f0
|
@ -1,5 +1,10 @@
|
||||||
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
|
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
|
||||||
|
|
||||||
|
## v3.3.1 / 2014 Sep 7
|
||||||
|
|
||||||
|
* **FIX** https://github.com/ptaoussanis/timbre/issues/79.
|
||||||
|
|
||||||
|
|
||||||
## v3.3.0 / 2014 May 8
|
## v3.3.0 / 2014 May 8
|
||||||
|
|
||||||
* **CHANGE**: Update IRC appender to Timbre v3 style (@crisptrutski).
|
* **CHANGE**: Update IRC appender to Timbre v3 style (@crisptrutski).
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
**[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contrib](#contact--contributing) | current [Break Version][]:
|
**[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contrib](#contact--contributing) | current [Break Version][]:
|
||||||
|
|
||||||
```clojure
|
```clojure
|
||||||
[com.taoensso/timbre "3.3.0"]
|
[com.taoensso/timbre "3.3.1"]
|
||||||
```
|
```
|
||||||
|
|
||||||
v3 is a **major, backwards-compatible release**. Please see the [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.
|
v3 is a **major, backwards-compatible release**. Please see the [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.
|
||||||
|
|
15
project.clj
15
project.clj
|
@ -1,4 +1,4 @@
|
||||||
(defproject com.taoensso/timbre "3.3.0"
|
(defproject com.taoensso/timbre "3.3.1"
|
||||||
: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"
|
||||||
|
@ -12,7 +12,7 @@
|
||||||
|
|
||||||
:dependencies
|
:dependencies
|
||||||
[[org.clojure/clojure "1.4.0"]
|
[[org.clojure/clojure "1.4.0"]
|
||||||
[com.taoensso/encore "1.7.3"]
|
[com.taoensso/encore "1.8.1"]
|
||||||
[io.aviso/pretty "0.1.12"]]
|
[io.aviso/pretty "0.1.12"]]
|
||||||
|
|
||||||
:profiles
|
:profiles
|
||||||
|
@ -43,12 +43,5 @@
|
||||||
"deploy-lib" ["do" "deploy" "clojars," "install"]
|
"deploy-lib" ["do" "deploy" "clojars," "install"]
|
||||||
"start-dev" ["with-profile" "+server-jvm" "repl" ":headless"]}
|
"start-dev" ["with-profile" "+server-jvm" "repl" ":headless"]}
|
||||||
|
|
||||||
:repositories
|
:repositories {"sonatype-oss-public"
|
||||||
{"sonatype"
|
"https://oss.sonatype.org/content/groups/public/"})
|
||||||
{:url "http://oss.sonatype.org/content/repositories/releases"
|
|
||||||
:snapshots false
|
|
||||||
:releases {:checksum :fail}}
|
|
||||||
"sonatype-snapshots"
|
|
||||||
{:url "http://oss.sonatype.org/content/repositories/snapshots"
|
|
||||||
:snapshots true
|
|
||||||
:releases {:checksum :fail :update :always}}})
|
|
||||||
|
|
Loading…
Reference in New Issue