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 db0c8e7 commit 3beb23b
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
# CHANGELOG

## Version 0.2.3 (2023-04-08)
- Update `core` to `0.2.3`
- Update `hash` to `0.2.3`
- Update `macs` to `0.2.3`
- Add `core-xof`
- Add `hash-sha3`
- Add `macs-hmac-sha3`
- Add `endians-endians`
- Add `sponges-keccak`

## Version 0.2.1 (2023-03-29)
- Initial Release
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencyResolutionManagement {
versionCatalogs {
create("kotlincrypto") {
// https://github.com/KotlinCrypto/version-catalog/blob/master/gradle/kotlincrypto.versions.toml
from("org.kotlincrypto:version-catalog:0.2.1")
from("org.kotlincrypto:version-catalog:0.2.3")
}
}
}
Expand All @@ -27,16 +27,19 @@ dependencyResolutionManagement {
Use in your projects
```kotlin
dependencies {
implementation(kotlincrypto.endians.endians)
implementation(kotlincrypto.hash.sha2)
implementation(kotlincrypto.hash.sha3)
implementation(kotlincrypto.macs.hmac.sha2)
implementation(kotlincrypto.macs.hmac.sha3)
implementation(kotlincrypto.secureRandom)
}
```

See the [TOML file](gradle/kotlincrypto.versions.toml) for what is included!

<!-- TAG_VERSION -->
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.2.1-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

[url-latest-release]: https://github.com/KotlinCrypto/version-catalog/releases/latest
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.2.2-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
# 0.1.0 = 00 01 00 99
# 1.1.0 = 01 01 00 99
VERSION_CODE=20299
VERSION_CODE=20399

0 comments on commit 3beb23b

Please sign in to comment.