Skip to content

Commit

Permalink
Prepare 0.2.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
05nelsonm committed Apr 8, 2023
1 parent 49d55ce commit 14fcf89
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 7 deletions.
20 changes: 17 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,30 @@
# CHANGELOG

## Version 0.2.3 (2023-04-08)
- Fix `nonJvm` `Mac.doFinal` not calling `engine.reset()` [[#27]][27]
- Only implementation of `Mac` is `Hmac` via `MACs` repo, which is
unaffected by this issue.
- Adds `XofAlgorithm` interface [[#29]][29]

## Version 0.2.2 (2023-04-07)
- Adds abstraction for `XOF`s (`Extendable-Output Functions`)
- Adds abstraction for `XOF`s (`Extendable-Output Functions`) [[#25]][25]

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

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

## Version 0.1.0 (2023-03-04)
- Initial Release

[12]: https://github.com/KotlinCrypto/core/pull/12
[16]: https://github.com/KotlinCrypto/core/pull/16
[21]: https://github.com/KotlinCrypto/core/pull/21
[25]: https://github.com/KotlinCrypto/core/pull/25
[27]: https://github.com/KotlinCrypto/core/pull/27
[29]: https://github.com/KotlinCrypto/core/pull/29
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ The best way to keep `KotlinCrypto` dependencies up to date is by using the
```kotlin
// build.gradle.kts
dependencies {
val core = "0.2.2"
val core = "0.2.3"
implementation("org.kotlincrypto.core:digest:$core")
implementation("org.kotlincrypto.core:mac:$core")
implementation("org.kotlincrypto.core:xof:$core")
Expand All @@ -54,15 +54,15 @@ dependencies {
```groovy
// build.gradle
dependencies {
def core = "0.2.2"
def core = "0.2.3"
implementation "org.kotlincrypto.core:digest:$core"
implementation "org.kotlincrypto.core:mac:$core"
implementation "org.kotlincrypto.core:xof:$core"
}
```

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

<!-- TAG_DEPENDENCIES -->
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ POM_DEVELOPER_ID=KotlinCrypto
POM_DEVELOPER_NAME=Kotlin Crypto
POM_DEVELOPER_URL=https://github.com/KotlinCrypto/

VERSION_NAME=0.2.3-SNAPSHOT
VERSION_NAME=0.2.3
# 0.1.0-alpha01 = 00 01 00 11
# 0.1.0-beta01 = 00 01 00 21
# 0.1.0-rc01 = 00 01 00 31
Expand Down

0 comments on commit 14fcf89

Please sign in to comment.