Skip to content

Commit 36f64a5

Browse files
authored
Merge pull request #141 from cryptimeleon/release-3.0.1
Patch including changelog update before release
2 parents 8613dd2 + 7c30f89 commit 36f64a5

2 files changed

Lines changed: 14 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [3.0.1]
10+
11+
### Changed
12+
13+
- Publishing to maven central automated via Gradle plugin
14+
- RingElementVector are now UniqueByteRepresentable [PR](https://github.com/cryptimeleon/math/pull/139)
15+
16+
### Fixed
17+
- Concatenation in class Vector now works as intended [PR](https://github.com/cryptimeleon/math/pull/138)
918

1019
## [3.0.0]
1120

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

5867

59-
[Unreleased]: https://github.com/cryptimeleon/math/compare/v3.0.0...HEAD
68+
[Unreleased]: https://github.com/cryptimeleon/math/compare/v3.0.1...HEAD
69+
[3.0.1]: https://github.com/cryptimeleon/math/compare/v3.0.0...v3.0.1
6070
[3.0.0]: https://github.com/cryptimeleon/math/compare/v2.1.0...v3.0.0
6171
[2.1.0]: https://github.com/cryptimeleon/math/compare/v2.0.0...v2.1.0
6272
[2.0.0]: https://github.com/cryptimeleon/math/compare/v1.0.0...v2.0.0

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,15 +67,15 @@ To add the newest Math version as a dependency, add this to your project's POM:
6767
<dependency>
6868
<groupId>org.cryptimeleon</groupId>
6969
<artifactId>math</artifactId>
70-
<version>3.0.0</version>
70+
<version>3.0.1</version>
7171
</dependency>
7272
```
7373

7474
### Installation With Gradle
7575

7676
Math is published via Maven Central.
7777
Therefore, you need to add `mavenCentral()` to the `repositories` section of your project's `build.gradle` file.
78-
Then, add `implementation group: 'org.cryptimeleon', name: 'math', version: '3.0.0'` to the `dependencies` section of your `build.gradle` file.
78+
Then, add `implementation group: 'org.cryptimeleon', name: 'math', version: '3.0.1'` to the `dependencies` section of your `build.gradle` file.
7979

8080
For example:
8181

@@ -85,7 +85,7 @@ repositories {
8585
}
8686
8787
dependencies {
88-
implementation group: 'org.cryptimeleon', name: 'math', version: '3.0.0'
88+
implementation group: 'org.cryptimeleon', name: 'math', version: '3.0.1'
8989
}
9090
```
9191

0 commit comments

Comments
 (0)