diff --git a/CHANGELOG.md b/CHANGELOG.md index 31b86187..da3a907c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## v1.2.2 + +* Added `allowSnapshots` parameter to allow SNAPSHOT dependencies on releasing (see [#10](https://github.com/aleksandr-m/gitflow-maven-plugin/issues/10)) +* Dependencies versions updated + ## v1.2.1 * Added `commitMessages` configuration which allows to customize commit messages (see [#8](https://github.com/aleksandr-m/gitflow-maven-plugin/issues/8)) diff --git a/README.md b/README.md index 33fc5b29..6cf9449e 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ The plugin is available from Maven central. com.amashchenko.maven.plugin gitflow-maven-plugin - 1.2.1 + 1.2.2 @@ -122,6 +122,8 @@ The default value is `false` (i.e. the supporting branch will be deleted). All `-finish` goals and `gitflow:release` have `skipTestProject` parameter which controls whether Maven `test` goal will be called before merging branches. The default value is `false` (i.e. the project will be tested before merging branches). +All `release` goals have `allowSnapshots` parameter which controls whether SNAPSHOT dependencies are allowed. The default value is `false` (i.e. build fails if there SNAPSHOT dependency in project). + # Non-interactive Release Releases could be performed without prompting for the release version during `gitflow:release-start` goal by telling Maven to run in non-interactive (batch) mode. diff --git a/pom.xml b/pom.xml index 82d585c2..8cf4c10b 100644 --- a/pom.xml +++ b/pom.xml @@ -21,7 +21,7 @@ gitflow-maven-plugin maven-plugin gitflow-maven-plugin - 1.2.2-SNAPSHOT + 1.2.2 Git-Flow Maven Plugin, which runs Git and Maven commands from the command line. Supports Eclipse Plugins build with Tycho.