Skip to content

Commit 0264fb8

Browse files
committed
Prepare 0.1.1 release
1 parent e066a71 commit 0264fb8

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# CHANGELOG
22

3+
## Version 0.1.0 (2023-03-06)
4+
- Fix `Digest.update` miscalculation when `offset` parameter is provided
5+
36
## Version 0.1.0 (2023-03-04)
47
- Initial Release

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ If you are looking for Hashing algorithms (e.g. `SHA-256`, `SHA-512`, etc), see
3232
```kotlin
3333
// build.gradle.kts
3434
dependencies {
35-
val core = "0.1.0"
35+
val core = "0.1.1"
3636
implementation("org.kotlincrypto.core:digest:$core")
3737
implementation("org.kotlincrypto.core:mac:$core")
3838
}
@@ -43,7 +43,7 @@ dependencies {
4343
```groovy
4444
// build.gradle
4545
dependencies {
46-
def core = "0.1.0"
46+
def core = "0.1.1"
4747
implementation "org.kotlincrypto.core:digest:$core"
4848
implementation "org.kotlincrypto.core:mac:$core"
4949
}
@@ -55,10 +55,10 @@ dependencies {
5555

5656
| core | kotlin |
5757
|:-----:|:------:|
58-
| 0.1.0 | 1.8.10 |
58+
| 0.1.1 | 1.8.10 |
5959

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

6464
<!-- 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.1.1-SNAPSHOT
32+
VERSION_NAME=0.1.1
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)