diff --git a/CHANGELOG.md b/CHANGELOG.md index 2863dee1..46ffd88f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,19 +1,21 @@ > This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**. -## v4.3.0-RC1 / 2016 Jan 27 +## v4.3.0 / 2016 Feb 26 -> This is a non-breaking feature release +> This is a major, non-breaking feature release * **New**: added 3rd-party gelf appender [#147 @davewo] * **New**: new `:?hash-arg` data key for use by custom data hash fns * **New**: low-level `log!` macro for use in tooling (slf4j-timbre, etc.) +* **New**: allow compile-time log level to be set with system property [#151 @DomKM] +* **New**: ClojureScript console logger docstring now incl. instructions for Chrome Blackboxing [#132 @danskarda] +* **New**: include line numbers in default output for non-nested macros [#132] * **Impln**: appenders no longer need to worry about using `force` instead of `@`/`deref` ```clojure [com.taoensso/timbre "4.3.0"] ``` - ## v4.2.1 / 2016 Jan 14 > This is a non-breaking hotfix release @@ -24,7 +26,6 @@ [com.taoensso/timbre "4.2.1"] ``` - ## v4.2.0 / 2015 Dec 27 > This is a non-breaking feature release diff --git a/README.md b/README.md index 9af0c70c..de17ecaf 100644 --- a/README.md +++ b/README.md @@ -5,8 +5,7 @@ **[CHANGELOG]** | [API] | current [Break Version]: ```clojure -[com.taoensso/timbre "4.2.1"] ; Stable -[com.taoensso/timbre "4.3.0-RC1"] ; Dev, see CHANGELOG for details +[com.taoensso/timbre "4.3.0"] ; Stable ``` # Timbre @@ -44,7 +43,7 @@ Your link here? | **PR's welcome!** Add the necessary dependency to your project: ```clojure -[com.taoensso/timbre "4.2.1"] +[com.taoensso/timbre "4.3.0"] ``` And setup your namespace imports: diff --git a/project.clj b/project.clj index 821288aa..59952a92 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/timbre "4.3.0-RC1" +(defproject com.taoensso/timbre "4.3.0" :author "Peter Taoussanis " :description "Pure Clojure/Script logging library" :url "https://github.com/ptaoussanis/timbre"