From a58f5302cd019dfc598744f51ff33bd098c539fc Mon Sep 17 00:00:00 2001 From: Peter Taoussanis Date: Mon, 16 Feb 2015 12:59:23 +0700 Subject: [PATCH] v3.4.0 --- CHANGELOG.md | 5 +++++ README.md | 6 ++---- project.clj | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 56ea500..8df2f0d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ > This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**. +## v3.4.0 / 2015 Feb 16 + + > This should be a **non-breaking** release that only bumps some old dependencies. + + ## v3.3.1 / 2014 Sep 7 * **FIX** https://github.com/ptaoussanis/timbre/issues/79. diff --git a/README.md b/README.md index d7fe401..2f41188 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,9 @@ **[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contrib](#contact--contributing) | current [Break Version][]: ```clojure -[com.taoensso/timbre "3.3.1"] +[com.taoensso/timbre "3.4.0"] ``` -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. - # Timbre, a (sane) Clojure logging & profiling library Logging with Java can be maddeningly, unnecessarily hard. Particularly if all you want is something *simple that works out-the-box*. Timbre brings functional, Clojure-y goodness to all your logging needs. **No XML!** @@ -34,7 +32,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: ```clojure -[com.taoensso/timbre "3.3.1"] ; project.clj +[com.taoensso/timbre "3.4.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 846744b..f076096 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/timbre "3.3.1" +(defproject com.taoensso/timbre "3.4.0" :author "Peter Taoussanis " :description "Clojure logging & profiling library" :url "https://github.com/ptaoussanis/timbre"