Skip to content

Commit 8ad5e43

Browse files
committed
v6.7.0 (2025-04-15)
1 parent ad4a37c commit 8ad5e43

File tree

4 files changed

+30
-10
lines changed

4 files changed

+30
-10
lines changed

CHANGELOG.md

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

33
---
44

5+
# `v6.7.0` (2025-04-15)
6+
7+
- **Main dependency**: [on Clojars](https://clojars.org/com.taoensso/timbre/versions/6.7.0)
8+
- **SLF4J provider**: [on Clojars](https://clojars.org/com.taoensso/timbre-slf4j/versions/6.7.0)
9+
- **Versioning**: [Break Versioning](https://www.taoensso.com/break-versioning)
10+
11+
This is a **maintenance release** focused on updating dependencies.
12+
13+
It **drops support for Clojure v1.9** but should otherwise be a safe update for users of `v6.6.x`.
14+
15+
## Since `v6.6.1` (2024-10-30)
16+
17+
- **\[mod]** Drop official Clojure v1.9 support
18+
- **\[mod]** Now **throw** on invalid compile-time min-level \[a393582b]
19+
- \[new] Use [Truss exceptions](https://cljdoc.org/d/com.taoensso/truss/CURRENT/api/taoensso.truss#ex-info) on errors \[ad4a37c1]
20+
* \[fix] [#394] OTLP appender: fix reflection (@ericdallo) \[44829cd7]
21+
* \[doc] Mention limitation on compile-time min-level \[b97ad982]
22+
23+
---
24+
525
# `v6.6.1` (2024-10-30)
626

727
- **Main dependency**: [on Clojars](https://clojars.org/com.taoensso/timbre/versions/6.6.1)

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<a href="https://www.taoensso.com/clojure" title="More stuff by @ptaoussanis at www.taoensso.com"><img src="https://www.taoensso.com/open-source.png" alt="Taoensso open source" width="340"/></a>
2-
[**API**][codox docs] | [**Wiki**][GitHub wiki] | [Latest releases](#latest-releases) | [Slack channel][]
2+
[**API**][codox] | [**Wiki**][GitHub wiki] | [Latest releases](#latest-releases) | [Slack channel][]
33

44
# Timbre
55

@@ -21,7 +21,7 @@ There's **zero pressure** for existing users of Timbre to migrate, though there
2121

2222
## Latest release/s
2323

24-
- `2024-10-30` `v6.6.1`: [release info](../../releases/tag/v6.6.1)
24+
- `2025-04-15` `v6.7.0`: [release info](../../releases/tag/v6.6.2)
2525

2626
[![Main tests][Main tests SVG]][Main tests URL]
2727
[![Graal tests][Graal tests SVG]][Graal tests URL]
@@ -43,15 +43,15 @@ See [here][GitHub releases] for earlier releases.
4343
## Documentation
4444

4545
- [Wiki][GitHub wiki] (getting started, usage, etc.)
46-
- API reference: [Codox][Codox docs]
46+
- API reference: [Codox][]
4747

4848
## Funding
4949

5050
You can [help support][sponsor] continued work on this project, thank you!! 🙏
5151

5252
## License
5353

54-
Copyright &copy; 2014-2024 [Peter Taoussanis][].
54+
Copyright &copy; 2014-2025 [Peter Taoussanis][].
5555
Licensed under [EPL 1.0](LICENSE.txt) (same as Clojure).
5656

5757
<!-- Common -->
@@ -66,8 +66,8 @@ Licensed under [EPL 1.0](LICENSE.txt) (same as Clojure).
6666

6767
<!-- Project -->
6868

69-
[Codox docs]: https://taoensso.github.io/timbre/
70-
[cljdoc docs]: https://cljdoc.org/d/com.taoensso/timbre/CURRENT/api/taoensso.timbre
69+
[Codox]: https://taoensso.github.io/timbre/
70+
[cljdoc]: https://cljdoc.org/d/com.taoensso/timbre/CURRENT/api/taoensso.timbre
7171

7272
[Clojars SVG]: https://img.shields.io/clojars/v/com.taoensso/timbre.svg
7373
[Clojars URL]: https://clojars.org/com.taoensso/timbre

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.1"
1+
(defproject com.taoensso/timbre "6.7.0"
22
:author "Peter Taoussanis <https://www.taoensso.com>"
33
:description "Pure Clojure/Script logging library"
44
:url "https://www.taoensso.com/timbre"
@@ -66,7 +66,7 @@
6666
[[org.clojure/test.check "1.1.1"]
6767
[org.clojure/tools.logging "1.3.0"]
6868
[org.slf4j/slf4j-api "2.0.17"]
69-
[com.taoensso/timbre-slf4j "6.6.1"]
69+
[com.taoensso/timbre-slf4j "6.7.0"]
7070
[com.taoensso/nippy "3.5.0"]
7171
[com.taoensso/carmine "3.4.1" :exclusions [com.taoensso/timbre]]
7272
[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.1"
1+
(defproject com.taoensso/timbre-slf4j "6.7.0"
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.12.0"]
2020
[org.slf4j/slf4j-api "2.0.17"]
21-
[com.taoensso/timbre "6.6.1"]]}
21+
[com.taoensso/timbre "6.7.0"]]}
2222

2323
:dev
2424
{:plugins

0 commit comments

Comments
 (0)