Skip to content

Commit

Permalink
v4.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaoussanis committed Dec 27, 2015
1 parent e48dea5 commit d08b0bd
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 6 deletions.
20 changes: 19 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,26 @@
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
## v4.2.0 / 2015 Dec 27

> This is a non-breaking feature release
* **Change**: switch default timestamp timezone from JVM default to UTC [#135]
* **Change**: switch default timestamp pattern from `yy-MMM-dd` -> `yy-MM-dd pattern` (easier to sort) [#135]
* **New**: `swap-config!` now supports &args [#137 @rsslldnphy]
* **New**: rotor appender now creates necessary paths [#140 @dsapala]
* **New**: faster (transducer-based) string joins with Clojure 1.7+ [#133]
* **New**: records now get a human-readable string representation [#133]
* **Fix**: application slowdown due to agents shutdown [#141 @ryfow]

```clojure
[com.taoensso/timbre "4.2.0"]
```

## v4.1.5 / 2015 Dec 27

> This is a hotfix release to help fix https://github.com/fzakaria/slf4j-timbre/issues/8
> This is a non-breaking hotfix release
* Assist fix of https://github.com/fzakaria/slf4j-timbre/issues/8

```clojure
[com.taoensso/timbre "4.1.5"]
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
**[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contrib](#contact--contributing) | current [Break Version][]:

```clojure
[com.taoensso/timbre "4.1.5"] ; Stable, see CHANGELOG for details
[com.taoensso/timbre "4.2.0"] ; Stable, see CHANGELOG for details
```

# Timbre, a (sane) Clojure/Script logging & profiling library
# Timbre, a pure Clojure/Script logging library

Java logging is a mess of complexity that buys you _nothing_. It can be comically hard to get even the simplest logging working, and it's no better at scale.

Expand Down Expand Up @@ -39,7 +39,7 @@ Your link here? | **PR's welcome!**
Add the necessary dependency to your [Leiningen][] `project.clj` and `require` the necessary namespaces:

```clojure
[com.taoensso/timbre "4.1.5"] ; Add to your project.clj :dependencies
[com.taoensso/timbre "4.2.0"] ; Add to your project.clj :dependencies

(ns my-clj-ns ; Clj ns => use `:refer`
(:require
Expand Down
4 changes: 2 additions & 2 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(defproject com.taoensso/timbre "4.1.5"
(defproject com.taoensso/timbre "4.2.0"
:author "Peter Taoussanis <https://www.taoensso.com>"
:description "Clojure/Script logging & profiling library"
:description "Pure Clojure/Script logging library"
:url "https://github.com/ptaoussanis/timbre"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"
Expand Down

0 comments on commit d08b0bd

Please sign in to comment.