File tree Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
3
+ ## Version 0.1.0 (2023-03-06)
4
+ - Fixes ` Hmac.Engine ` implementation where ` offset ` or ` len `
5
+ were not being passed to the ` Digest `
6
+ - Updates ` kotlincrypto.core ` to ` 0.1.1 `
7
+ - Updates ` kotlincrypto.hash ` to ` 0.1.2 `
8
+ - Removes ` hmac ` from the ` BOM ` dependency
9
+
3
10
## Version 0.1.0 (2023-03-05)
4
11
- Initial Release
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ fun main() {
65
65
// build.gradle.kts
66
66
dependencies {
67
67
// define the BOM and its version
68
- implementation(platform(" org.kotlincrypto.macs:bom:0.1.0 " ))
68
+ implementation(platform(" org.kotlincrypto.macs:bom:0.1.1 " ))
69
69
70
70
// define artifacts without version
71
71
implementation(" org.kotlincrypto.macs:hmac-md5" )
@@ -81,10 +81,10 @@ dependencies {
81
81
82
82
| MACs | kotlin |
83
83
| :-----:| :------:|
84
- | 0.1.0 | 1.8.10 |
84
+ | 0.1.1 | 1.8.10 |
85
85
86
86
<!-- TAG_VERSION -->
87
- [ badge-latest-release ] : https://img.shields.io/badge/latest--release-0.1.0 -blue.svg?style=flat
87
+ [ badge-latest-release ] : https://img.shields.io/badge/latest--release-0.1.1 -blue.svg?style=flat
88
88
[ badge-license ] : https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat
89
89
90
90
<!-- TAG_DEPENDENCIES -->
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ POM_DEVELOPER_ID=KotlinCrypto
29
29
POM_DEVELOPER_NAME =Kotlin Crypto
30
30
POM_DEVELOPER_URL =https://github.com/KotlinCrypto/
31
31
32
- VERSION_NAME =0.1.1-SNAPSHOT
32
+ VERSION_NAME =0.1.1
33
33
# 0.1.0-alpha01 = 00 01 00 11
34
34
# 0.1.0-beta01 = 00 01 00 21
35
35
# 0.1.0-rc01 = 00 01 00 31
You can’t perform that action at this time.
0 commit comments