Skip to content

Commit 6ee6129

Browse files
committed
v6.6.0-RC1 (2024-08-30)
1 parent 97e30f5 commit 6ee6129

File tree

4 files changed

+35
-4
lines changed

4 files changed

+35
-4
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,36 @@ This project uses [**Break Versioning**](https://www.taoensso.com/break-versioni
22

33
---
44

5+
# `v6.6.0-RC1` (2024-08-30)
6+
7+
📦 **Available on Clojars**: [Timbre](https://clojars.org/com.taoensso/timbre/versions/6.6.0-RC1) | [SLF4J provider](https://clojars.org/com.taoensso/timbre-slf4j/versions/6.6.0-RC1)
8+
Uses [Break Versioning](https://www.taoensso.com/break-versioning).
9+
10+
---
11+
12+
This is a significant **feature** release that includes new **built-in support** for [Java logging interop via SLF4J](https://github.com/taoensso/timbre/wiki/4-Interop#java-logging).
13+
14+
Big thanks to @fzakaria for their long-time work on Timbre's [previous optional SLF4J interop](https://github.com/fzakaria/slf4j-timbre) 🙏
15+
16+
As always, feedback and bug reports very welcome! - [Peter Taoussanis](https://www.taoensso.com)
17+
18+
## Changes since `v6.5.0` (2024-02-26)
19+
20+
* 6d7495a7 [mod] `default-output-fn`: omit "?" location info
21+
22+
## New since `v6.5.0` (2024-02-26)
23+
24+
* 6b4873ec [new] Add SLF4Jv2 backend/provider
25+
* 95ea032d [new] [#389] Capture cause of failing error-fn
26+
* 0fa226eb [doc] [#386] Add `timbre-json-appender` to wiki (@NoahTheDuke)
27+
* Various internal improvements and updated dependencies
28+
29+
## Fixes since `v6.5.0` (2024-02-26)
30+
31+
* None
32+
33+
---
34+
535
# `v6.5.0` (2024-02-26)
636

737
> 📦 [Available on Clojars](https://clojars.org/com.taoensso/timbre/versions/6.5.0), this project uses [Break Versioning](https://www.taoensso.com/break-versioning).

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ There's **zero pressure** for existing users of Timbre to migrate, though there
2121

2222
## Latest release/s
2323

24+
- `2024-08-30` `v6.6.0-RC1` (next): [release info](../../releases/tag/v6.6.0-RC1)
2425
- `2024-02-26` `v6.5.0` (stable): [release info](../../releases/tag/v6.5.0)
2526

2627
[![Main tests][Main tests SVG]][Main tests URL]

project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject com.taoensso/timbre "6.6.0-SNAPSHOT"
1+
(defproject com.taoensso/timbre "6.6.0-RC1"
22
:author "Peter Taoussanis <https://www.taoensso.com>"
33
:description "Pure Clojure/Script logging library"
44
:url "https://www.taoensso.com/timbre"
@@ -67,7 +67,7 @@
6767
[[org.clojure/test.check "1.1.1"]
6868
[org.clojure/tools.logging "1.3.0"]
6969
[org.slf4j/slf4j-api "2.0.16"]
70-
[com.taoensso/timbre-slf4j "6.6.0-SNAPSHOT"]
70+
[com.taoensso/timbre-slf4j "6.6.0-RC1"]
7171
[com.taoensso/nippy "3.4.2"]
7272
[com.taoensso/carmine "3.4.1" :exclusions [com.taoensso/timbre]]
7373
[com.draines/postal "2.0.5"]]

slf4j/project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject com.taoensso/timbre-slf4j "6.6.0-SNAPSHOT"
1+
(defproject com.taoensso/timbre-slf4j "6.6.0-RC1"
22
:author "Peter Taoussanis <https://www.taoensso.com>"
33
:description "Timbre backend/provider for SLF4J API v2"
44
:url "https://www.taoensso.com/timbre"
@@ -18,7 +18,7 @@
1818
{:dependencies
1919
[[org.clojure/clojure "1.11.4"]
2020
[org.slf4j/slf4j-api "2.0.16"]
21-
[com.taoensso/timbre "6.6.0-SNAPSHOT"]]}
21+
[com.taoensso/timbre "6.6.0-RC1"]]}
2222

2323
:dev
2424
{:plugins

0 commit comments

Comments
 (0)