Skip to content

Commit

Permalink
Prepare 0.2.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
05nelsonm committed Apr 16, 2023
1 parent 9c83517 commit 49c5a37
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 27 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

## Version 0.2.4 (2023-04-16)
- Update `core` to `0.2.4`
- Update `hash` to `0.2.4`
- Update `macs` to `0.2.4`
- Add `macs-kmac`

## Version 0.2.3 (2023-04-08)
- Update `core` to `0.2.3`
- Update `hash` to `0.2.3`
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

A [VersionCatalog][url-gradle-docs] for the latest versions of **all** [KotlinCrypto][url-kotlin-crypto] dependencies

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

### Get Started

<!-- TAG_VERSION -->
Expand All @@ -18,7 +20,7 @@ dependencyResolutionManagement {
versionCatalogs {
create("kotlincrypto") {
// https://github.com/KotlinCrypto/version-catalog/blob/master/gradle/kotlincrypto.versions.toml
from("org.kotlincrypto:version-catalog:0.2.3")
from("org.kotlincrypto:version-catalog:0.2.4")
}
}
}
Expand All @@ -32,14 +34,13 @@ dependencies {
implementation(kotlincrypto.hash.sha3)
implementation(kotlincrypto.macs.hmac.sha2)
implementation(kotlincrypto.macs.hmac.sha3)
implementation(kotlincrypto.macs.kmac)
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.3-blue.svg?style=flat
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.2.4-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
3 changes: 1 addition & 2 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,7 @@ gpg --card-status
{
"data": {
"stagedRepositoryIds": [
"<repository id>",
"<repository id>"
"orgkotlincrypto-<id>"
],
"autoDropAfterRelease": true
}
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.2.4-SNAPSHOT
VERSION_NAME=0.2.4
# 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
41 changes: 21 additions & 20 deletions gradle/kotlincrypto.versions.toml
Original file line number Diff line number Diff line change
@@ -1,35 +1,36 @@
[versions]
core = "0.2.3"
endians = "0.1.0"
hash = "0.2.3"
macs = "0.2.3"
secureRandom = "0.1.0"
sponges = "0.1.0"
core = "0.2.4"
endians = "0.1.0"
hash = "0.2.4"
macs = "0.2.4"
secureRandom = "0.1.0"
sponges = "0.1.0"

[libraries]
# https://github.com/KotlinCrypto/core
core-common = { module = "org.kotlincrypto.core:common", version.ref = "core" }
core-digest = { module = "org.kotlincrypto.core:digest", version.ref = "core" }
core-mac = { module = "org.kotlincrypto.core:mac", version.ref = "core" }
core-xof = { module = "org.kotlincrypto.core:xof", version.ref = "core" }
core-common = { module = "org.kotlincrypto.core:common", version.ref = "core" }
core-digest = { module = "org.kotlincrypto.core:digest", version.ref = "core" }
core-mac = { module = "org.kotlincrypto.core:mac", version.ref = "core" }
core-xof = { module = "org.kotlincrypto.core:xof", version.ref = "core" }

# https://github.com/KotlinCrypto/endians
endians-endians = { module = "org.kotlincrypto.endians:endians", version.ref = "endians" }

# https://github.com/KotlinCrypto/hash
hash-md5 = { module = "org.kotlincrypto.hash:md5", version.ref = "hash" }
hash-sha1 = { module = "org.kotlincrypto.hash:sha1", version.ref = "hash" }
hash-sha2 = { module = "org.kotlincrypto.hash:sha2", version.ref = "hash" }
hash-sha3 = { module = "org.kotlincrypto.hash:sha3", version.ref = "hash" }
hash-md5 = { module = "org.kotlincrypto.hash:md5", version.ref = "hash" }
hash-sha1 = { module = "org.kotlincrypto.hash:sha1", version.ref = "hash" }
hash-sha2 = { module = "org.kotlincrypto.hash:sha2", version.ref = "hash" }
hash-sha3 = { module = "org.kotlincrypto.hash:sha3", version.ref = "hash" }

# https://github.com/KotlinCrypto/MACs
macs-hmac-md5 = { module = "org.kotlincrypto.macs:hmac-md5", version.ref = "macs" }
macs-hmac-sha1 = { module = "org.kotlincrypto.macs:hmac-sha1", version.ref = "macs" }
macs-hmac-sha2 = { module = "org.kotlincrypto.macs:hmac-sha2", version.ref = "macs" }
macs-hmac-sha3 = { module = "org.kotlincrypto.macs:hmac-sha3", version.ref = "macs" }
macs-hmac-md5 = { module = "org.kotlincrypto.macs:hmac-md5", version.ref = "macs" }
macs-hmac-sha1 = { module = "org.kotlincrypto.macs:hmac-sha1", version.ref = "macs" }
macs-hmac-sha2 = { module = "org.kotlincrypto.macs:hmac-sha2", version.ref = "macs" }
macs-hmac-sha3 = { module = "org.kotlincrypto.macs:hmac-sha3", version.ref = "macs" }
macs-kmac = { module = "org.kotlincrypto.macs:kmac", version.ref = "macs" }

# https://github.com/KotlinCrypto/secure-random
secureRandom = { module = "org.kotlincrypto:secure-random", version.ref = "secureRandom" }
secureRandom = { module = "org.kotlincrypto:secure-random", version.ref = "secureRandom" }

# https://github.com/KotlinCrypto/sponges
sponges-keccak = { module = "org.kotlincrypto.sponges:keccak", version.ref = "sponges" }
sponges-keccak = { module = "org.kotlincrypto.sponges:keccak", version.ref = "sponges" }
1 change: 1 addition & 0 deletions stub/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ kmpConfiguration {
implementation(kotlincrypto.macs.hmac.sha1)
implementation(kotlincrypto.macs.hmac.sha2)
implementation(kotlincrypto.macs.hmac.sha3)
implementation(kotlincrypto.macs.kmac)

implementation(kotlincrypto.secureRandom)

Expand Down

0 comments on commit 49c5a37

Please sign in to comment.