Skip to content

Commit

Permalink
v4.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaoussanis committed Jun 10, 2016
1 parent ed88597 commit 606562c
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 4 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
## v4.4.0 / 2016 Jun 10

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

> This is a **major, non-breaking release**, enjoy :-)
* **New**: Add support for appender-level ns filters [#171]
* **New**: Add 3rd-party logstash appender [#166 @dfrese]
* **New**: Add PostgreSQL appender [#160 @yuliu-mdsol]
* **New**: Add Slack appender [#159 @sbelak]
* **Fix**: Make rotor appender thread-safe [#168 @mikesperber]
* **Fix**: Don't cache cljs console appender's `js/console` [#165]
* **Fix**: Fix surprising `merge-config` nil behaviour [#163]

## v4.3.1 / 2016 Feb 28

* **Hotfix**: had a removed var in the profiling macro
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
**[CHANGELOG]** | [API] | current [Break Version]:

```clojure
[com.taoensso/timbre "4.3.1"] ; Stable
[com.taoensso/timbre "4.4.0"] ; Stable
```

Want to help [support taoensso/open-source]?
Expand Down Expand Up @@ -45,7 +45,7 @@ Your link here? | **PR's welcome!**
Add the necessary dependency to your project:

```clojure
[com.taoensso/timbre "4.3.1"]
[com.taoensso/timbre "4.4.0"]
```

And setup your namespace imports:
Expand Down Expand Up @@ -125,6 +125,8 @@ This is the biggest win over Java logging IMO. **All** of Timbre's behaviour is
:rate-limit ; [[ncalls-limit window-ms] <...>], or nil
:output-fn ; Optional override for inherited (fn [data]) -> string
:fn ; (fn [data]) -> side effects, with keys described below
:ns-whitelist ; Optional, stacks with active config's whitelist
:ns-blacklist ; Optional, stacks with active config's blacklist
An appender's fn takes a single data map with keys:
:config ; Entire config map (this map, etc.)
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject com.taoensso/timbre "4.3.1"
(defproject com.taoensso/timbre "4.4.0"
:author "Peter Taoussanis <https://www.taoensso.com>"
:description "Pure Clojure/Script logging library"
:url "https://github.com/ptaoussanis/timbre"
Expand Down
2 changes: 1 addition & 1 deletion src/taoensso/timbre.cljx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(ns taoensso.timbre
"Simple, flexible logging for Clojure/Script. No XML."
{:author "Peter Taoussanis"}
{:author "Peter Taoussanis (@ptaoussanis)"}
#+clj
(:require
[clojure.string :as str]
Expand Down
1 change: 1 addition & 0 deletions src/taoensso/timbre/appenders/example.clj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
https://github.com/swaldman/c3p0"
{:author "TODO Your Name (@your-github-username)"}
(:require
[taoensso.encore :as enc]
[taoensso.timbre :as timbre]))

;; TODO If you add any special ns imports above, please remember to update
Expand Down

0 comments on commit 606562c

Please sign in to comment.