Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.0.1]

### Changed

- Publishing to maven central automated via Gradle plugin
- RingElementVector are now UniqueByteRepresentable [PR](https://github.com/cryptimeleon/math/pull/139)

### Fixed
- Concatenation in class Vector now works as intended [PR](https://github.com/cryptimeleon/math/pull/138)

## [3.0.0]

Expand Down Expand Up @@ -56,7 +65,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Initial release


[Unreleased]: https://github.com/cryptimeleon/math/compare/v3.0.0...HEAD
[Unreleased]: https://github.com/cryptimeleon/math/compare/v3.0.1...HEAD
[3.0.1]: https://github.com/cryptimeleon/math/compare/v3.0.0...v3.0.1
[3.0.0]: https://github.com/cryptimeleon/math/compare/v2.1.0...v3.0.0
[2.1.0]: https://github.com/cryptimeleon/math/compare/v2.0.0...v2.1.0
[2.0.0]: https://github.com/cryptimeleon/math/compare/v1.0.0...v2.0.0
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,15 @@ To add the newest Math version as a dependency, add this to your project's POM:
<dependency>
<groupId>org.cryptimeleon</groupId>
<artifactId>math</artifactId>
<version>3.0.0</version>
<version>3.0.1</version>
</dependency>
```

### Installation With Gradle

Math 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: 'math', version: '3.0.0'` to the `dependencies` section of your `build.gradle` file.
Then, add `implementation group: 'org.cryptimeleon', name: 'math', version: '3.0.1'` to the `dependencies` section of your `build.gradle` file.

For example:

Expand All @@ -85,7 +85,7 @@ repositories {
}

dependencies {
implementation group: 'org.cryptimeleon', name: 'math', version: '3.0.0'
implementation group: 'org.cryptimeleon', name: 'math', version: '3.0.1'
}
```

Expand Down