Skip to content

Commit

Permalink
Prepare 0.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
05nelsonm committed Mar 28, 2023
1 parent c7fa986 commit dbb2c01
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# CHANGELOG

## Version 0.1.0 (2023-03-06)
## 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.

## Version 0.1.1 (2023-03-06)
- Fix `Digest.update` miscalculation when `offset` parameter is provided

## Version 0.1.0 (2023-03-04)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ If you are looking for Mac algorithms (e.g. `HmacSHA256`, `HmacSHA512`, etc), se
```kotlin
// build.gradle.kts
dependencies {
val core = "0.1.1"
val core = "0.2.0"
implementation("org.kotlincrypto.core:digest:$core")
implementation("org.kotlincrypto.core:mac:$core")
}
Expand All @@ -49,14 +49,14 @@ dependencies {
```groovy
// build.gradle
dependencies {
def core = "0.1.1"
def core = "0.2.0"
implementation "org.kotlincrypto.core:digest:$core"
implementation "org.kotlincrypto.core:mac:$core"
}
```

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

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

VERSION_NAME=0.1.2-SNAPSHOT
VERSION_NAME=0.2.0
# 0.1.0-alpha01 = 00 01 00 11
# 0.1.0-beta01 = 00 01 00 21
# 0.1.0-rc01 = 00 01 00 31
# 0.1.0 = 00 01 00 99
# 1.1.0 = 01 01 00 99
VERSION_CODE=10299
VERSION_CODE=20099

0 comments on commit dbb2c01

Please sign in to comment.