v1.0.1 (2025-05-27)
Some checks failed
Graal tests / test (17, macOS-latest) (push) Has been cancelled
Graal tests / test (17, ubuntu-latest) (push) Has been cancelled
Graal tests / test (17, windows-latest) (push) Has been cancelled
Main tests / tests (17, ubuntu-latest) (push) Has been cancelled
Main tests / tests (19, ubuntu-latest) (push) Has been cancelled
Main tests / tests (21, ubuntu-latest) (push) Has been cancelled

This commit is contained in:
Peter Taoussanis 2025-05-27 08:50:55 +02:00
parent d6264afe7c
commit 6fb18bd3b9
4 changed files with 30 additions and 5 deletions

View file

@ -2,6 +2,31 @@ This project uses [**Break Versioning**](https://www.taoensso.com/break-versioni
---
# `v1.0.1` (2025-05-27)
## 📦 Dependencies
Available on Clojars:
1. [Telemere](https://clojars.org/com.taoensso/telemere/versions/1.0.1) - main dependency.
2. [SLF4J provider](https://clojars.org/com.taoensso/telemere-slf4j/versions/1.0.1) - additional dependency for users that want their Java logging [to go to](https://github.com/taoensso/telemere/wiki/3-Config#java-logging) Telemere.
This project uses [Break Versioning](https://www.taoensso.com/break-versioning).
## Release notes
This is a **hotfix release** that fixes a few issues, and improves some documentation. It should be a safe upgrade for all users of v1.0.0.
## Since `v1` (2025-04-30)
* \[fix] [#65] Fix broken callsite `:limit` option \[f08b60b]
* \[fix] Fix bad `signal-content-fn` parent formatting \[3746de8]
* \[doc] Add extra docs re: debugging filtering \[1bdb667]
* \[doc] [#64] Hide some unimportant vars from API docs (@marksto) \[2e0a293]
* \[doc] [#63] Add link to community Axiom handler (@marksto) \[9d040d7]
---
# `v1.0.0` (2025-04-30)
## 📦 Dependencies

View file

@ -28,7 +28,7 @@ See [here](../../wiki/1-Getting-started) for **full introduction** (concepts, te
## Latest release/s
- `2025-04-30` `v1.0.0`: [release info](../../releases/tag/v1.0.0)
- `2025-05-27` `v1.0.1`: [release info](../../releases/tag/v1.0.1)
[![Main tests][Main tests SVG]][Main tests URL]
[![Graal tests][Graal tests SVG]][Graal tests URL]

View file

@ -1,4 +1,4 @@
(defproject com.taoensso/telemere "1.0.0"
(defproject com.taoensso/telemere "1.0.1"
:author "Peter Taoussanis <https://www.taoensso.com>"
:description "Structured logs and telemetry for Clojure/Script"
:url "https://www.taoensso.com/telemere"
@ -50,7 +50,7 @@
[org.clojure/test.check "1.1.1"]
[org.clojure/tools.logging "1.3.0"]
[org.slf4j/slf4j-api "2.0.17"]
[com.taoensso/telemere-slf4j "1.0.0"]
[com.taoensso/telemere-slf4j "1.0.1"]
#_[org.slf4j/slf4j-simple "2.0.16"]
#_[org.slf4j/slf4j-nop "2.0.16"]
#_[io.github.paintparty/bling "0.4.2"]

View file

@ -1,4 +1,4 @@
(defproject com.taoensso/telemere-slf4j "1.0.0"
(defproject com.taoensso/telemere-slf4j "1.0.1"
:author "Peter Taoussanis <https://www.taoensso.com>"
:description "Telemere backend/provider for SLF4J API v2"
:url "https://www.taoensso.com/telemere"
@ -18,7 +18,7 @@
{:dependencies
[[org.clojure/clojure "1.12.0"]
[org.slf4j/slf4j-api "2.0.17"]
[com.taoensso/telemere "1.0.0"]]}
[com.taoensso/telemere "1.0.1"]]}
:dev
{:plugins