From 10690f5731595a9ddec13e987fa638453a722e50 Mon Sep 17 00:00:00 2001 From: Peter Taoussanis Date: Sat, 26 Sep 2015 12:24:40 +0700 Subject: [PATCH] v4.1.2 --- CHANGELOG.md | 11 +++++++++++ README.md | 5 ++--- project.clj | 2 +- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 076b0d2..8e54abe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ > This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**. +## v4.1.2 / 2015 Sep 26 + +> This is a non-breaking hotfix release + +* Bring back deprecated `logp` macro from Timbre v3.x to ease back-compatibility [#67] + +```clojure +[com.taoensso/timbre "4.1.2"] +``` + + ## v4.1.1 / 2015 Aug 16 > This is a non-breaking hotfix release diff --git a/README.md b/README.md index 603ebbc..5a78b98 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,7 @@ **[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contrib](#contact--contributing) | current [Break Version][]: ```clojure -[com.taoensso/timbre "4.1.1"] ; Stable, see CHANGELOG for details -[com.taoensso/timbre "3.4.0"] ; Legacy +[com.taoensso/timbre "4.1.2"] ; Stable ``` # Timbre, a (sane) Clojure/Script logging & profiling library @@ -36,7 +35,7 @@ Timbre offers an **all Clojure/Script** alternative that **works out the box**. Add the necessary dependency to your [Leiningen][] `project.clj` and `require` the necessary namespaces: ```clojure -[com.taoensso/timbre "4.1.1"] ; Add to your project.clj :dependencies +[com.taoensso/timbre "4.1.2"] ; Add to your project.clj :dependencies (ns my-clj-ns ; Clj ns => use `:refer` (:require diff --git a/project.clj b/project.clj index 7d67fe2..7d13af2 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/timbre "4.1.1" +(defproject com.taoensso/timbre "4.1.2" :author "Peter Taoussanis " :description "Clojure/Script logging & profiling library" :url "https://github.com/ptaoussanis/timbre"