This commit is contained in:
Peter Taoussanis 2015-09-30 17:01:50 +07:00
parent 69edc76778
commit afe6dd3a63
3 changed files with 16 additions and 4 deletions

View File

@ -1,5 +1,16 @@
> 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.1.4 / 2015 Sep 30
> This is a non-breaking hotfix release
* Fix broken support for Clojure 1.5
```clojure
[com.taoensso/timbre "4.1.4"]
```
## v4.1.2 / 2015 Sep 26 ## v4.1.2 / 2015 Sep 26
> This is a non-breaking hotfix release > This is a non-breaking hotfix release

View File

@ -1,7 +1,7 @@
**[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 "4.1.2"] ; Stable [com.taoensso/timbre "4.1.4"] ; Stable, see CHANGELOG for details
``` ```
# Timbre, a (sane) Clojure/Script logging & profiling library # Timbre, a (sane) Clojure/Script logging & profiling library
@ -35,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: Add the necessary dependency to your [Leiningen][] `project.clj` and `require` the necessary namespaces:
```clojure ```clojure
[com.taoensso/timbre "4.1.2"] ; Add to your project.clj :dependencies [com.taoensso/timbre "4.1.4"] ; 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.1.2" (defproject com.taoensso/timbre "4.1.4"
: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"
@ -26,6 +26,7 @@
:profiles :profiles
{;; :default [:base :system :user :provided :dev] {;; :default [:base :system :user :provided :dev]
:server-jvm {:jvm-opts ^:replace ["-server"]} :server-jvm {:jvm-opts ^:replace ["-server"]}
:1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]}
:1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]} :1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]}
:1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]} :1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]}
:1.8 {:dependencies [[org.clojure/clojure "1.8.0-alpha5"]]} :1.8 {:dependencies [[org.clojure/clojure "1.8.0-alpha5"]]}
@ -79,7 +80,7 @@
:aliases :aliases
{"test-all" ["do" "clean," "cljx" "once," {"test-all" ["do" "clean," "cljx" "once,"
"with-profile" "default:+1.6:+1.7:+1.8" "expectations," "with-profile" "+1.5:+1.6:+1.7:+1.8" "expectations,"
"with-profile" "+test" "cljsbuild" "test"] "with-profile" "+test" "cljsbuild" "test"]
"test-auto" ["with-profile" "+test" "autoexpect"] "test-auto" ["with-profile" "+test" "autoexpect"]
"build-once" ["do" "clean," "cljx" "once," "cljsbuild" "once" "main"] "build-once" ["do" "clean," "cljx" "once," "cljsbuild" "once" "main"]