From d1a83dc1302adc56dcafa723929feed7f9fa41f4 Mon Sep 17 00:00:00 2001 From: "Steven C. Saliman" Date: Sun, 19 Nov 2023 07:26:38 -0700 Subject: [PATCH] Releasing version 2.2.1 --- README.md | 13 ------------- doc/releases.md | 5 +++++ doc/usage.md | 4 ++-- gradle.properties | 2 +- 4 files changed, 8 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 77db30c..8738169 100644 --- a/README.md +++ b/README.md @@ -16,16 +16,3 @@ Documentation - [Usage](./doc/usage.md) - [Upgrading Liquibase](./doc/upgrading-liquibase.md) - - - - - - - - - - - - - diff --git a/doc/releases.md b/doc/releases.md index 31bee67..51db8fb 100644 --- a/doc/releases.md +++ b/doc/releases.md @@ -12,6 +12,11 @@ to your build.gradle file. This page gives the highlights newer releases. For complete details of each release, including older releases, see the [changelog](./changelog.md). +### Release 2.2.1 (November 19, 2023) + +- Added support for the `author` argument of the `diffChangeLog` and `generateChangeLog` commands + with thanks to @EggOxygen. + ### Release 2.2.0 (March 4, 2023) **Release 2.2.0 has some important and potentially breaking changes.** diff --git a/doc/usage.md b/doc/usage.md index e4411a2..4ab6fdd 100644 --- a/doc/usage.md +++ b/doc/usage.md @@ -17,7 +17,7 @@ To include the plugin into Gradle builds, simply add the following to your build ```groovy plugins { - id 'org.liquibase.gradle' version '2.2.0' + id 'org.liquibase.gradle' version '2.2.1' } ``` @@ -29,7 +29,7 @@ buildscript { mavenCentral() } dependencies { - classpath "org.liquibase:liquibase-gradle-plugin:2.2.0" + classpath "org.liquibase:liquibase-gradle-plugin:2.2.1" } } apply plugin: 'org.liquibase.gradle' diff --git a/gradle.properties b/gradle.properties index a4acd88..6dd956c 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ # What version of the Liquibase Gradle Plugin are we building? -liquibaseGradlePluginVersion=2.2.1-SNAPSHOT +liquibaseGradlePluginVersion=2.2.1 # When we download a maven dependency, should we also get source files? downloadSources=false