diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 413dd39..7b75e8d 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -19,6 +19,8 @@ A release with known breaking changes is marked with: // (adjust these in publish.clj as you see fit) === Unreleased +=== v1.1.47 - 2023-03-25 [[v1.1.47]] + * Clojure string to rewrite-clj node coercion fixes https://github.com/clj-commons/rewrite-clj/issues/214[#214] (@borkdude/@lread collab) @@ -35,6 +37,8 @@ c" Previously we were only handling `\"`. Strings like `"\\s+"` now handled and preserved. +https://github.com/clj-commons/rewrite-clj/compare/v1.1.46\...v1.1.47[commit log] + === v1.1.46 - 2023-01-30 [[v.1.1.46]] * added new `rewrite-clj.zip` functions `of-string*` and `of-file*`, these are versions of `of-string` and `of-file` that do no auto-navigation diff --git a/deps.edn b/deps.edn index 2af79ad..9115d4b 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.46" ;; describes last release and is template for next release + :neil {:project {:version "1.1.47" ;; 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 83202f9..1820ed9 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.46 +:lib-version: 1.1.47 == 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.