diff --git a/README.md b/README.md
index 003e914..c8a365b 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
-[**Documentation**](#documentation) | [Latest releases](#latest-releases) | [Get support][GitHub issues]
+[**API**][codox docs] | [**Wiki**][GitHub wiki] | [Latest releases](#latest-releases) | [Slack channel][]
# Timbre
@@ -21,8 +21,7 @@ There's **zero pressure** for existing users of Timbre to migrate, though there
## Latest release/s
-- `2024-08-30` `v6.6.0-RC1` (next): [release info](../../releases/tag/v6.6.0-RC1)
-- `2024-02-26` `v6.5.0` (stable): [release info](../../releases/tag/v6.5.0)
+- `2024-10-28` `v6.6.0`: [release info](../../releases/tag/v6.6.0)
[![Main tests][Main tests SVG]][Main tests URL]
[![Graal tests][Graal tests SVG]][Graal tests URL]
@@ -60,14 +59,15 @@ Licensed under [EPL 1.0](LICENSE.txt) (same as Clojure).
[GitHub releases]: ../../releases
[GitHub issues]: ../../issues
[GitHub wiki]: ../../wiki
+[Slack channel]: https://www.taoensso.com/timbre/slack
[Peter Taoussanis]: https://www.taoensso.com
[sponsor]: https://www.taoensso.com/sponsor
-[Codox docs]: https://taoensso.github.io/timbre/
-[cljdoc docs]: https://cljdoc.org/d/com.taoensso/timbre/
+[Codox docs]: https://taoensso.github.io/timbre/
+[cljdoc docs]: https://cljdoc.org/d/com.taoensso/timbre/CURRENT/api/taoensso.timbre
[Clojars SVG]: https://img.shields.io/clojars/v/com.taoensso/timbre.svg
[Clojars URL]: https://clojars.org/com.taoensso/timbre
diff --git a/project.clj b/project.clj
index aa90c4e..4049372 100644
--- a/project.clj
+++ b/project.clj
@@ -67,7 +67,7 @@
[[org.clojure/test.check "1.1.1"]
[org.clojure/tools.logging "1.3.0"]
[org.slf4j/slf4j-api "2.0.16"]
- [com.taoensso/timbre-slf4j "6.6.0-RC1"]
+ [com.taoensso/timbre-slf4j "6.6.0"]
[com.taoensso/nippy "3.5.0-RC1"]
[com.taoensso/carmine "3.4.1" :exclusions [com.taoensso/timbre]]
[com.draines/postal "2.0.5"]]
diff --git a/slf4j/project.clj b/slf4j/project.clj
index 3b45324..f77ec0f 100644
--- a/slf4j/project.clj
+++ b/slf4j/project.clj
@@ -1,4 +1,4 @@
-(defproject com.taoensso/timbre-slf4j "6.6.0-RC1"
+(defproject com.taoensso/timbre-slf4j "6.6.0"
:author "Peter Taoussanis "
:description "Timbre backend/provider for SLF4J API v2"
:url "https://www.taoensso.com/timbre"
@@ -18,7 +18,7 @@
{:dependencies
[[org.clojure/clojure "1.12.0"]
[org.slf4j/slf4j-api "2.0.16"]
- [com.taoensso/timbre "6.6.0-RC1"]]}
+ [com.taoensso/timbre "6.6.0"]]}
:dev
{:plugins