diff --git a/CHANGELOG.md b/CHANGELOG.md index 93602e1b..a4e5602d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [Latest] ## [3.0.1] @@ -48,7 +48,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Initial release -[Unreleased]: https://github.com/cryptimeleon/craco/compare/v3.0.1...HEAD +[Latest]: https://github.com/cryptimeleon/craco/compare/v3.0.1...HEAD [3.0.1]: https://github.com/cryptimeleon/craco/compare/v3.0.0...v3.0.1 [3.0.0]: https://github.com/cryptimeleon/craco/compare/v2.1.0...v3.0.0 [2.1.0]: https://github.com/cryptimeleon/craco/compare/v2.0.0...v2.1.0 diff --git a/README.md b/README.md index ce6d4dd6..f2f81e7d 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ To add the newest Craco version as a dependency, add this to your project's POM: org.cryptimeleon craco - 3.0.1 + [3.0,) ``` @@ -74,7 +74,7 @@ To add the newest Craco version as a dependency, add this to your project's POM: Craco is published via Maven Central. Therefore, you need to add `mavenCentral()` to the `repositories` section of your project's `build.gradle` file. -Then, add `implementation group: 'org.cryptimeleon', name: 'craco', version: '3.0.1'` to the `dependencies` section of your `build.gradle` file. +Then, add `implementation group: 'org.cryptimeleon', name: 'craco', version: '3.+'` to the `dependencies` section of your `build.gradle` file. For example: @@ -84,7 +84,7 @@ repositories { } dependencies { - implementation group: 'org.cryptimeleon', name: 'craco', version: '3.0.1' + implementation group: 'org.cryptimeleon', name: 'craco', version: '3.+' } ``` diff --git a/build.gradle b/build.gradle index df7b7214..202db06f 100644 --- a/build.gradle +++ b/build.gradle @@ -8,7 +8,7 @@ plugins { group = 'org.cryptimeleon' archivesBaseName = project.name boolean isRelease = project.hasProperty("release") -version = '3.0.1' + (isRelease ? "" : "-SNAPSHOT") +version = '3.0.2' + (isRelease ? "" : "-SNAPSHOT") sourceCompatibility = 1.8 @@ -23,7 +23,7 @@ repositories { mavenCentral() } -def mathVersionNoSuffix = '3.0.1' +def mathVersionNoSuffix = '3.+' dependencies {