Skip to content

Commit

Permalink
Prepare version 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
robxyy committed Jan 8, 2024
1 parent 2b2bb5d commit 6e5f4f4
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@

## [Unreleased]

## [0.2.0] - 2024-01-08

### Added

* Siphash implementation
* Halfsiphash implementation
* Siphash implementation (#108)
* Halfsiphash implementation (#108)

## [0.1.5] - 2023-08-16

Expand Down
6 changes: 3 additions & 3 deletions README-zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@ Diglol Crypto for Kotlin Multiplatform.
包含所有的子模块

```gradle
implementation("com.diglol.crypto:crypto:0.1.5")
implementation("com.diglol.crypto:crypto:0.2.0")
```

_如果需要依赖子模块,请参考当前支持的加密常量。_

```gradle
implementation("com.diglol.crypto:${submodule}:0.1.5")
implementation("com.diglol.crypto:${submodule}:0.2.0")
```

### License
Expand Down Expand Up @@ -100,7 +100,7 @@ implementation("com.diglol.crypto:${submodule}:0.1.5")
[siphash]: https://datatracker.ietf.org/doc/rfc9231/

<!-- TAG_VERSION -->
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.1.5-blue.svg?style=flat
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.2.0-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/diglol/crypto/releases/latest
[url-license]: https://www.apache.org/licenses/LICENSE-2.0.txt
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@ Our [change log](CHANGELOG.md) has release history.
Include all submodules.

```gradle
implementation("com.diglol.crypto:crypto:0.1.5")
implementation("com.diglol.crypto:crypto:0.2.0")
```

_If you need to depend on a submodule, please refer to the currently supported cryptographic constants._

```gradle
implementation("com.diglol.crypto:${submodule}:0.1.5")
implementation("com.diglol.crypto:${submodule}:0.2.0")
```

### License
Expand Down Expand Up @@ -100,7 +100,7 @@ implementation("com.diglol.crypto:${submodule}:0.1.5")
[siphash]: https://datatracker.ietf.org/doc/rfc9231/

<!-- TAG_VERSION -->
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.1.5-blue.svg?style=flat
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.2.0-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/diglol/crypto/releases/latest
[url-license]: https://www.apache.org/licenses/LICENSE-2.0.txt
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ buildscript {

allprojects {
group = "com.diglol.crypto"
version = "0.2.0-SNAPSHOT"
version = "0.2.0"

repositories {
mavenCentral()
Expand Down

0 comments on commit 6e5f4f4

Please sign in to comment.