diff --git a/CHANGELOG.md b/CHANGELOG.md index 6bfb5ec..6230774 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## v2.1.2 → v2.2.0 + * Add socket, MongoDB appenders (thanks to emlyn). + + ## v2.0.0 → v2.1.2 * Added appenders: socket, IRC, MongoDB (CongoMongo). See [README](https://github.com/ptaoussanis/timbre#built-in-appenders) for details. * Add `ex-data` output to `stacktrace` fn. diff --git a/README.md b/README.md index c744952..1d53b73 100644 --- a/README.md +++ b/README.md @@ -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: ```clojure -[com.taoensso/timbre "2.1.2"] ; See CHANGELOG for breaking changes since 1.x +[com.taoensso/timbre "2.2.0"] ; See CHANGELOG for breaking changes since 1.x ``` # Timbre, a (sane) Clojure logging & profiling library @@ -26,7 +26,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: ```clojure -[com.taoensso/timbre "2.1.2"] ; project.clj +[com.taoensso/timbre "2.2.0"] ; project.clj (ns my-app (:require [taoensso.timbre :as timbre :refer (trace debug info warn error fatal spy)])) ; ns ``` diff --git a/project.clj b/project.clj index d71f768..aceca97 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/timbre "2.1.2" +(defproject com.taoensso/timbre "2.2.0" :description "Clojure logging & profiling library" :url "https://github.com/ptaoussanis/timbre" :license {:name "Eclipse Public License" @@ -30,4 +30,4 @@ "sonatype-snapshots" {:url "http://oss.sonatype.org/content/repositories/snapshots" :snapshots true - :releases {:checksum :fail :update :always}}}) \ No newline at end of file + :releases {:checksum :fail :update :always}}})