diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 18bd9c0..681f22b 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -24,6 +24,8 @@ A release with known breaking changes is marked with: // (adjust these in publish.clj as you see fit) === Unreleased +=== v1.1.48 - 2024-08-15 [[v1.1.48]] + * bump `org.clojure/tools.reader` to version `1.4.2` ({lread}) * `sexpr` now 1) expands tag metadata to its long form 2) throws on invalid metadata @@ -40,6 +42,8 @@ A release with known breaking changes is marked with: ** Rewrite-clj can rewrite invalid escaped chars but will throw on `sexpr` {issue}295[#295] ({lread}) +https://github.com/clj-commons/rewrite-clj/compare/v1.1.47\...v1.1.48[commit log] + === v1.1.47 - 2023-03-25 [[v1.1.47]] * Clojure string to rewrite-clj node coercion fixes diff --git a/deps.edn b/deps.edn index 6c2a453..86b3543 100644 --- a/deps.edn +++ b/deps.edn @@ -5,7 +5,7 @@ :aliases {;; we use babashka/neil for project attributes ;; publish workflow references these values (and automatically bumps patch component of version) - :neil {:project {:version "1.1.47" ;; describes last release and is template for next release + :neil {:project {:version "1.1.48" ;; describes last release and is template for next release :name rewrite-clj/rewrite-clj ;; not neilisms - could potentially conflict with new neilisms :github-coords clj-commons/rewrite-clj}} diff --git a/doc/01-user-guide.adoc b/doc/01-user-guide.adoc index 5d7c8ac..40f8fdf 100644 --- a/doc/01-user-guide.adoc +++ b/doc/01-user-guide.adoc @@ -5,7 +5,7 @@ :toclevels: 5 :toc: // DO NOT EDIT: the lib-version parameter is automatically updated by bb publish -:lib-version: 1.1.47 +:lib-version: 1.1.48 == Introduction Rewrite-clj is a library that can read, update and write Clojure, ClojureScript and https://github.com/edn-format/edn[EDN] source code while preserving whitespace and comments.