Skip to content

Commit 14fcf89

Browse files
committed
Prepare 0.2.3 release
1 parent 49d55ce commit 14fcf89

File tree

3 files changed

+21
-7
lines changed

3 files changed

+21
-7
lines changed

CHANGELOG.md

+17-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,30 @@
11
# CHANGELOG
22

3+
## Version 0.2.3 (2023-04-08)
4+
- Fix `nonJvm` `Mac.doFinal` not calling `engine.reset()` [[#27]][27]
5+
- Only implementation of `Mac` is `Hmac` via `MACs` repo, which is
6+
unaffected by this issue.
7+
- Adds `XofAlgorithm` interface [[#29]][29]
8+
39
## Version 0.2.2 (2023-04-07)
4-
- Adds abstraction for `XOF`s (`Extendable-Output Functions`)
10+
- Adds abstraction for `XOF`s (`Extendable-Output Functions`) [[#25]][25]
511

612
## Version 0.2.0 (2023-03-28)
713
- **BREAKING CHANGE:**
814
- `Digest.compress` function was changed to also include an offset.
915
This drastically improves performance by mitigating excessive/unnecessary
10-
array copying.
16+
array copying. [[#21]][21]
1117

1218
## Version 0.1.1 (2023-03-06)
13-
- Fix `Digest.update` miscalculation when `offset` parameter is provided
19+
- Fix `Digest.update` miscalculation when `offset` parameter is provided [[#16]][16]
20+
- Fix `jvm` `Digest.algorithm()` StackOverflow error [[#12]][12]
1421

1522
## Version 0.1.0 (2023-03-04)
1623
- Initial Release
24+
25+
[12]: https://github.com/KotlinCrypto/core/pull/12
26+
[16]: https://github.com/KotlinCrypto/core/pull/16
27+
[21]: https://github.com/KotlinCrypto/core/pull/21
28+
[25]: https://github.com/KotlinCrypto/core/pull/25
29+
[27]: https://github.com/KotlinCrypto/core/pull/27
30+
[29]: https://github.com/KotlinCrypto/core/pull/29

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The best way to keep `KotlinCrypto` dependencies up to date is by using the
4242
```kotlin
4343
// build.gradle.kts
4444
dependencies {
45-
val core = "0.2.2"
45+
val core = "0.2.3"
4646
implementation("org.kotlincrypto.core:digest:$core")
4747
implementation("org.kotlincrypto.core:mac:$core")
4848
implementation("org.kotlincrypto.core:xof:$core")
@@ -54,15 +54,15 @@ dependencies {
5454
```groovy
5555
// build.gradle
5656
dependencies {
57-
def core = "0.2.2"
57+
def core = "0.2.3"
5858
implementation "org.kotlincrypto.core:digest:$core"
5959
implementation "org.kotlincrypto.core:mac:$core"
6060
implementation "org.kotlincrypto.core:xof:$core"
6161
}
6262
```
6363

6464
<!-- TAG_VERSION -->
65-
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.2.2-blue.svg?style=flat
65+
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.2.3-blue.svg?style=flat
6666
[badge-license]: https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat
6767

6868
<!-- TAG_DEPENDENCIES -->

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ POM_DEVELOPER_ID=KotlinCrypto
2929
POM_DEVELOPER_NAME=Kotlin Crypto
3030
POM_DEVELOPER_URL=https://github.com/KotlinCrypto/
3131

32-
VERSION_NAME=0.2.3-SNAPSHOT
32+
VERSION_NAME=0.2.3
3333
# 0.1.0-alpha01 = 00 01 00 11
3434
# 0.1.0-beta01 = 00 01 00 21
3535
# 0.1.0-rc01 = 00 01 00 31

0 commit comments

Comments
 (0)