Skip to content

Commit

Permalink
Merge pull request #94 from cryptimeleon/develop
Browse files Browse the repository at this point in the history
Release version 3.0.2
  • Loading branch information
feidens authored Oct 22, 2021
2 parents a2ebeac + d97ebbf commit 6c9fc18
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]

Expand Down Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,15 @@ To add the newest Craco version as a dependency, add this to your project's POM:
<dependency>
<groupId>org.cryptimeleon</groupId>
<artifactId>craco</artifactId>
<version>3.0.1</version>
<version>[3.0,)</version>
</dependency>
```

### Installation With Gradle

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:

Expand All @@ -84,7 +84,7 @@ repositories {
}
dependencies {
implementation group: 'org.cryptimeleon', name: 'craco', version: '3.0.1'
implementation group: 'org.cryptimeleon', name: 'craco', version: '3.+'
}
```

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -23,7 +23,7 @@ repositories {
mavenCentral()
}

def mathVersionNoSuffix = '3.0.1'
def mathVersionNoSuffix = '3.+'

dependencies {

Expand Down

0 comments on commit 6c9fc18

Please sign in to comment.