diff options
-rw-r--r-- | Changelog.md | 13 | ||||
-rw-r--r-- | pom.xml | 6 | ||||
-rw-r--r-- | version.properties | 6 |
3 files changed, 15 insertions, 10 deletions
diff --git a/Changelog.md b/Changelog.md index 2dbb287..dfd7cc1 100644 --- a/Changelog.md +++ b/Changelog.md @@ -4,12 +4,17 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -## [1.0.0] - 16/02/2021 +## [1.1.0] - 2021/03/01 + - [DCAEGEN2-3092](https://jira.onap.org/browse/DCAEGEN2-3092) + - Update spring to version 2.6.4 + - Update jackson-databind to version 2.13.1 + +## [1.0.1] - 2021/02/23 + - [DCAEGEN2-2574](https://jira.onap.org/browse/DCAEGEN2-2574) - Add healthcheck controller + +## [1.0.0] - 2021/02/16 - [DCAEGEN2-2572](https://jira.onap.org/browse/DCAEGEN2-2572) - Add ves-openapi-manager implementation - [DCAEGEN2-2575](https://jira.onap.org/browse/DCAEGEN2-2575) - Remove Sonar code smells - [DCAEGEN2-2573](https://jira.onap.org/browse/DCAEGEN2-2573) - Update image building - [DCAEGEN2-2573](https://jira.onap.org/browse/DCAEGEN2-2573) - Add the suffix -SNAPSHOT to fix CI - [DCAEGEN2-2573](https://jira.onap.org/browse/DCAEGEN2-2573) - Fix groupId - -## [1.0.1] - 23/02/2021 - - [DCAEGEN2-2574](https://jira.onap.org/browse/DCAEGEN2-2574) - Add healthcheck controller @@ -13,7 +13,7 @@ <groupId>org.onap.dcaegen2.platform.ves-openapi-manager</groupId> <artifactId>ves-openapi-manager</artifactId> - <version>1.0.1-SNAPSHOT</version> + <version>1.1.0-SNAPSHOT</version> <packaging>jar</packaging> <properties> @@ -27,9 +27,9 @@ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <hibernate-validator.version>6.1.6.Final</hibernate-validator.version> - <jackson-databind.version>2.9.4</jackson-databind.version> + <jackson-databind.version>2.13.1</jackson-databind.version> <mockito-core.version>2.22.0</mockito-core.version> - <spring.version>2.4.2</spring.version> + <spring.version>2.6.4</spring.version> <docker-maven-plugin.version>0.31.0</docker-maven-plugin.version> <skipDockerPush>false</skipDockerPush> <nexusproxy>https://nexus.onap.org</nexusproxy> diff --git a/version.properties b/version.properties index fdf525c..7b8b963 100644 --- a/version.properties +++ b/version.properties @@ -1,6 +1,6 @@ major=1 -minor=0 -patch=1 +minor=1 +patch=0 base_version=${major}.${minor}.${patch} release_version=${base_version} -snapshot_version=${base_version}-SNAPSHOT
\ No newline at end of file +snapshot_version=${base_version}-SNAPSHOT |