diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 29d7494..b46f48b 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -15,11 +15,15 @@ Clj-yaml makes use of SnakeYAML, please also refer to the https://bitbucket.org/ // (adjust these in publish.clj as you see fit) == Unreleased +== v1.0.29 - 2024-11-23 [[v1.0.29]] + * Fixes ** Set `indent-with-indicator` before `indicator-indent` in dumper options (https://github.com/clj-commons/clj-yaml/issues/31[#31]) (https://github.com/noonian[@noonian]) +https://github.com/clj-commons/clj-yaml/compare/v1.0.28\...v1.0.29[commit log] + == v1.0.28 - 2024-09-10 [[v1.0.28]] * Dependencies diff --git a/deps.edn b/deps.edn index 2096c48..c6a3bb4 100644 --- a/deps.edn +++ b/deps.edn @@ -7,7 +7,7 @@ :aliases {;; we use babashka/neil for project attributes ;; publish workflow references these values (and automatically bumps patch) - :neil {:project {:version "1.0.28" + :neil {:project {:version "1.0.29" :name clj-commons/clj-yaml}} :1.8 {:override-deps {org.clojure/clojure {:mvn/version "1.8.0"}}} :1.9 {:override-deps {org.clojure/clojure {:mvn/version "1.9.0"}}} diff --git a/doc/01-user-guide.adoc b/doc/01-user-guide.adoc index b52fed7..613c3c3 100644 --- a/doc/01-user-guide.adoc +++ b/doc/01-user-guide.adoc @@ -2,7 +2,7 @@ :toclevels: 5 :toc: // DO NOT EDIT: the lib-version parameter is automatically updated by bb publish -:lib-version: 1.0.28 +:lib-version: 1.0.29 == Audience You want to learn more about how to use the clj-yaml library from your app, library or script.