Skip to content

Commit

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

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

## Version 0.1.0 (2023-03-04)
- Initial Release
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ If you are looking for Hashing algorithms (e.g. `SHA-256`, `SHA-512`, etc), see
```kotlin
// build.gradle.kts
dependencies {
val core = "0.1.0"
val core = "0.1.1"
implementation("org.kotlincrypto.core:digest:$core")
implementation("org.kotlincrypto.core:mac:$core")
}
Expand All @@ -43,7 +43,7 @@ dependencies {
```groovy
// build.gradle
dependencies {
def core = "0.1.0"
def core = "0.1.1"
implementation "org.kotlincrypto.core:digest:$core"
implementation "org.kotlincrypto.core:mac:$core"
}
Expand All @@ -55,10 +55,10 @@ dependencies {

| core | kotlin |
|:-----:|:------:|
| 0.1.0 | 1.8.10 |
| 0.1.1 | 1.8.10 |

<!-- TAG_VERSION -->
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.1.0-blue.svg?style=flat
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.1.1-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.1.1-SNAPSHOT
VERSION_NAME=0.1.1
# 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 0264fb8

Please sign in to comment.