Skip to content

Commit dbb2c01

Browse files
committed
Prepare 0.2.0 release
1 parent c7fa986 commit dbb2c01

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# CHANGELOG
22

3-
## Version 0.1.0 (2023-03-06)
3+
## Version 0.2.0 (2023-03-28)
4+
- **BREAKING CHANGE:**
5+
- `Digest.compress` function was changed to also include an offset.
6+
This drastically improves performance by mitigating excessive/unnecessary
7+
array copying.
8+
9+
## Version 0.1.1 (2023-03-06)
410
- Fix `Digest.update` miscalculation when `offset` parameter is provided
511

612
## Version 0.1.0 (2023-03-04)

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ If you are looking for Mac algorithms (e.g. `HmacSHA256`, `HmacSHA512`, etc), se
3838
```kotlin
3939
// build.gradle.kts
4040
dependencies {
41-
val core = "0.1.1"
41+
val core = "0.2.0"
4242
implementation("org.kotlincrypto.core:digest:$core")
4343
implementation("org.kotlincrypto.core:mac:$core")
4444
}
@@ -49,14 +49,14 @@ dependencies {
4949
```groovy
5050
// build.gradle
5151
dependencies {
52-
def core = "0.1.1"
52+
def core = "0.2.0"
5353
implementation "org.kotlincrypto.core:digest:$core"
5454
implementation "org.kotlincrypto.core:mac:$core"
5555
}
5656
```
5757

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

6262
<!-- TAG_DEPENDENCIES -->

gradle.properties

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

32-
VERSION_NAME=0.1.2-SNAPSHOT
32+
VERSION_NAME=0.2.0
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
3636
# 0.1.0 = 00 01 00 99
3737
# 1.1.0 = 01 01 00 99
38-
VERSION_CODE=10299
38+
VERSION_CODE=20099

0 commit comments

Comments
 (0)