From 9ae5a7591b2bd69b31d0151d58d6f5ce4637ee15 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 30 Jan 2023 17:35:46 +0000 Subject: [PATCH] Release job: updates for version v1.1.46 --- CHANGELOG.adoc | 4 ++++ doc/01-user-guide.adoc | 4 ++-- version.edn | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 1e4b7e3..f596cf6 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -16,6 +16,8 @@ For a list of breaking changes see link:#v1-breaking[breaking changes]. === Unreleased +=== v1.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 https://github.com/clj-commons/rewrite-clj/issues/189[#189] (thanks @mainej for the analysis work) @@ -25,6 +27,8 @@ https://github.com/clj-commons/rewrite-clj/issues/189[#189] ** a docstring typo fix https://github.com/clj-commons/rewrite-clj/pull/191[#191] (thanks @BTowersCoding!) * Implement equality for seq nodes https://github.com/clj-commons/rewrite-clj/issues/212[#212] (@borkdude) +https://github.com/clj-commons/rewrite-clj/compare/v1.1.45\...v1.1.46[Gritty details of changes for this release] + === v1.1.45 * dropped the alpha status diff --git a/doc/01-user-guide.adoc b/doc/01-user-guide.adoc index 333eaef..0c83f2b 100644 --- a/doc/01-user-guide.adoc +++ b/doc/01-user-guide.adoc @@ -130,7 +130,7 @@ Include the following dependency in your `deps.edn` file: // NOTE: the version in this snippit is automatically updated by our release workflow [source,clojure] ---- -rewrite-clj/rewrite-clj {:mvn/version "1.1.45"} +rewrite-clj/rewrite-clj {:mvn/version "1.1.46"} ---- === Leiningen @@ -139,7 +139,7 @@ Include the following dependency in your `project.clj` file: // NOTE: the version in this snippit is automatically update by our release workflow [source,clojure] ---- -[rewrite-clj/rewrite-clj "1.1.45"] +[rewrite-clj/rewrite-clj "1.1.46"] ---- == Rewrite-clj APIs diff --git a/version.edn b/version.edn index be54226..65f289b 100644 --- a/version.edn +++ b/version.edn @@ -3,4 +3,4 @@ ;; omit :qualifier (ex. :qualifier "alpha") for official releases {:major 1 :minor 1 - :release 45} + :release 46}