This commit is contained in:
Peter Taoussanis 2015-06-10 13:37:27 +07:00
parent 4120a6fe40
commit a96a1ce19e
3 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**. > This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
## v4.0.0-beta4 / 2015 May 28 ## 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. > 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.
@ -17,7 +17,7 @@
* **Fix**: auto shutdown agents to prevent slow app shutdown [#61] * **Fix**: auto shutdown agents to prevent slow app shutdown [#61]
```clojure ```clojure
[com.taoensso/timbre "4.0.0-beta4"] [com.taoensso/timbre "4.0.0"]
``` ```
### Migration checklist ### Migration checklist

View File

@ -1,8 +1,8 @@
**[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contrib](#contact--contributing) | current [Break Version][]: **[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contrib](#contact--contributing) | current [Break Version][]:
```clojure ```clojure
[com.taoensso/timbre "3.4.0"] ; Stable [com.taoensso/timbre "4.0.0"] ; BREAKING, please see CHANGELOG for details
[com.taoensso/timbre "4.0.0-RC1"] ; BREAKING, please see CHANGELOG for details [com.taoensso/timbre "3.4.0"] ; Legacy
``` ```
# Timbre, a (sane) Clojure/Script logging & profiling library # Timbre, a (sane) Clojure/Script logging & profiling library
@ -36,7 +36,7 @@ Timbre brings functional, Clojure-y goodness to all your logging needs. It's fas
Add the necessary dependency to your [Leiningen][] `project.clj` and use the supplied ns-import helper: Add the necessary dependency to your [Leiningen][] `project.clj` and use the supplied ns-import helper:
```clojure ```clojure
[com.taoensso/timbre "4.0.0-RC1"] ; Add to your project.clj :dependencies [com.taoensso/timbre "4.0.0"] ; Add to your project.clj :dependencies
(ns my-clj-ns ; Clj ns => use `:refer` (ns my-clj-ns ; Clj ns => use `:refer`
(:require (:require

View File

@ -1,4 +1,4 @@
(defproject com.taoensso/timbre "4.0.0-RC1" (defproject com.taoensso/timbre "4.0.0"
:author "Peter Taoussanis <https://www.taoensso.com>" :author "Peter Taoussanis <https://www.taoensso.com>"
:description "Clojure/Script logging & profiling library" :description "Clojure/Script logging & profiling library"
:url "https://github.com/ptaoussanis/timbre" :url "https://github.com/ptaoussanis/timbre"