From af69046a43d4e0dadc5fa906f25ba560299f14d5 Mon Sep 17 00:00:00 2001 From: Peter Taoussanis Date: Sat, 13 Jun 2015 19:27:31 +0700 Subject: [PATCH] v4.0.1 --- CHANGELOG.md | 11 +++++++++++ README.md | 4 ++-- project.clj | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c40cfa5..f37c07c 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.0.1 / 2015 June 13 + +> This is a minor, non-breaking feature release + +* **New**: add `get-env`, `log-env` macros [#103 @RickMoynihan] + +```clojure +[com.taoensso/timbre "4.0.1"] +``` + + ## v4.0.0 / 2015 June 10 > This is a **MAJOR** update. Your custom appenders **WILL BREAK**. Your configuration **MIGHT BREAK**. Your call sites should be fine. I've updated all bundled appenders, but **haven't tested** any 3rd-party appenders. diff --git a/README.md b/README.md index 5f251e3..4b14f8c 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ **[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contrib](#contact--contributing) | current [Break Version][]: ```clojure -[com.taoensso/timbre "4.0.0"] ; BREAKING, please see CHANGELOG for details +[com.taoensso/timbre "4.0.1"] ; BREAKING, please see CHANGELOG for details [com.taoensso/timbre "3.4.0"] ; Legacy ``` @@ -36,7 +36,7 @@ Timbre offers an alternative **all Clojure/Script** logging experience that's fa Add the necessary dependency to your [Leiningen][] `project.clj` and use the supplied ns-import helper: ```clojure -[com.taoensso/timbre "4.0.0"] ; Add to your project.clj :dependencies +[com.taoensso/timbre "4.0.1"] ; Add to your project.clj :dependencies (ns my-clj-ns ; Clj ns => use `:refer` (:require diff --git a/project.clj b/project.clj index 9ee7ed6..12e30bf 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/timbre "4.0.0" +(defproject com.taoensso/timbre "4.0.1" :author "Peter Taoussanis " :description "Clojure/Script logging & profiling library" :url "https://github.com/ptaoussanis/timbre"