Skip to content

Commit

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

## Version 0.2.2 (2023-04-07)
- Adds abstraction for `XOF`s (`Extendable-Output Functions`)

## Version 0.2.0 (2023-03-28)
- **BREAKING CHANGE:**
- `Digest.compress` function was changed to also include an offset.
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![badge-latest-release]][url-latest-release]

[![badge-kotlin]][url-kotlin]
<!-- TODO: [![badge-endians]][url-endians] -->
[![badge-endians]][url-endians]

![badge-platform-android]
![badge-platform-jvm]
Expand Down Expand Up @@ -38,31 +38,31 @@ The best way to keep `KotlinCrypto` dependencies up to date is by using the
[version-catalog][url-version-catalog]. Alternatively, see below.

<!-- TAG_VERSION -->
<!-- TODO: implementation("org.kotlincrypto.core:xof:$core") -->

```kotlin
// build.gradle.kts
dependencies {
val core = "0.2.0"
val core = "0.2.2"
implementation("org.kotlincrypto.core:digest:$core")
implementation("org.kotlincrypto.core:mac:$core")
implementation("org.kotlincrypto.core:xof:$core")
}
```

<!-- TAG_VERSION -->
<!-- TODO: implementation "org.kotlincrypto.core:xof:$core" -->

```groovy
// build.gradle
dependencies {
def core = "0.2.0"
def core = "0.2.2"
implementation "org.kotlincrypto.core:digest:$core"
implementation "org.kotlincrypto.core:mac:$core"
implementation "org.kotlincrypto.core:xof:$core"
}
```

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

<!-- TAG_DEPENDENCIES -->
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.1-SNAPSHOT
VERSION_NAME=0.2.2
# 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=20199
VERSION_CODE=20299
2 changes: 1 addition & 1 deletion library/xof/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
POM_ARTIFACT_ID=xor
POM_ARTIFACT_ID=xof
POM_NAME=KotlinCrypto Extendable-Output Functions
POM_DESCRIPTION=Extendable-Output Functions

0 comments on commit 88a7b8c

Please sign in to comment.