Skip to content

Commit 7fe6f66

Browse files
committed
Prepare 0.1.2 release
1 parent e202c3e commit 7fe6f66

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
# CHANGELOG
22

3+
## Version 0.1.2 (2025-01-17)
4+
- Fixes `Counter.Bit64.Final.asBits` calculation [[#12]][12]
5+
36
## Version 0.1.1 (2025-01-14)
47
- Add checks to `Counter` that `incrementBy` is perfectly divisible into `{Int/Long}.MIN_VALUE` [[#9]][9]
58

69
## Version 0.1.0 (2025-01-13)
710
- Initial Release
811

912
[9]: https://github.com/KotlinCrypto/bitops/pull/9
13+
[12]: https://github.com/KotlinCrypto/bitops/pull/12

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ The best way to keep `KotlinCrypto` dependencies up to date is by using the
3939
```kotlin
4040
// build.gradle.kts
4141
dependencies {
42-
val vBitOps = "0.1.1"
42+
val vBitOps = "0.1.2"
4343
implementation("org.kotlincrypto.bitops:bits:$vBitOps")
4444
implementation("org.kotlincrypto.bitops:endian:$vBitOps")
4545
}
4646
```
4747

4848
<!-- TAG_VERSION -->
49-
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.1.1-blue.svg?style=flat
49+
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.1.2-blue.svg?style=flat
5050
[badge-license]: https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat
5151

5252
<!-- TAG_DEPENDENCIES -->

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ POM_DEVELOPER_ID=KotlinCrypto
2727
POM_DEVELOPER_NAME=Kotlin Crypto
2828
POM_DEVELOPER_URL=https://github.com/KotlinCrypto/
2929

30-
VERSION_NAME=0.1.2-SNAPSHOT
30+
VERSION_NAME=0.1.2
3131
# 0.1.0-alpha01 = 00 01 00 11
3232
# 0.1.0-beta01 = 00 01 00 21
3333
# 0.1.0-rc01 = 00 01 00 31

0 commit comments

Comments
 (0)