From 4a5c4ccce4b3c7d9c0695cab286b99494dbb8ba1 Mon Sep 17 00:00:00 2001 From: Peter Taoussanis Date: Thu, 30 Jan 2014 15:55:40 +0700 Subject: [PATCH] v3.0.0 --- CHANGELOG.md | 2 +- README.md | 5 ++--- project.clj | 2 +- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d4a7ddc..f8111ec7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## v3.0.0-RC4 / 2014-Jan-02 +## v3.0.0 / 2014-Jan-30 Major update, non-breaking though users with custom appenders are encouraged to view the _Changes_ section below. This version polishes up the codebase and general design. Tightened up a few aspects of how appenders and appender middleware work. Added a serializing Carmine appender (I use something similar in prod most of the time). Also finally added facilities for ad hoc (non-atom) logging configuration. diff --git a/README.md b/README.md index e57ab279..de00e313 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,7 @@ **[API docs](http://ptaoussanis.github.io/timbre/)** | **[CHANGELOG](https://github.com/ptaoussanis/timbre/blob/master/CHANGELOG.md)** | [contact & contributing](#contact--contribution) | [other Clojure libs](https://www.taoensso.com/clojure-libraries) | [Twitter](https://twitter.com/#!/ptaoussanis) | current [semantic](http://semver.org/) version: ```clojure -[com.taoensso/timbre "3.0.0-RC4"] ; Non-breaking upgrade - see CHANGELOG for details -[com.taoensso/timbre "2.7.1"] ; Stable +[com.taoensso/timbre "3.0.0"] ; 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. @@ -31,7 +30,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 use the supplied ns-import helper: ```clojure -[com.taoensso/timbre "3.0.0-RC4"] ; project.clj +[com.taoensso/timbre "3.0.0"] ; project.clj (ns my-app (:require [taoensso.timbre :as timbre])) ; Your ns (timbre/refer-timbre) ; Provides useful Timbre aliases in this ns diff --git a/project.clj b/project.clj index 6f733db1..1bac2d61 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/timbre "3.0.0-RC4" +(defproject com.taoensso/timbre "3.0.0" :description "Clojure logging & profiling library" :url "https://github.com/ptaoussanis/timbre" :license {:name "Eclipse Public License"