diff --git a/CHANGELOG.md b/CHANGELOG.md index f72e638..9d82237 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## Version 0.1.0-alpha02 (2023-01-02) + - Cleans up API for Java consumers [[#27]][27] + - Fixes visibility modifiers of `nonJvm` implementation of `File` [[#29]][29] + ## Version 0.1.0-alpha02 (2023-12-20) - Changes `mkdir` default POSIX permissions from `777` to `775` [[#24]][24] - Fixes native implementation of `chmod` [[#25]][25] @@ -9,3 +13,5 @@ [24]: https://github.com/05nelsonm/kmp-file/pull/24 [25]: https://github.com/05nelsonm/kmp-file/pull/25 +[27]: https://github.com/05nelsonm/kmp-file/pull/27 +[29]: https://github.com/05nelsonm/kmp-file/pull/29 diff --git a/README.md b/README.md index 1374903..71196ff 100644 --- a/README.md +++ b/README.md @@ -158,12 +158,12 @@ fun nativeMain(f1: File, f2: File) { ```kotlin dependencies { - implementation("io.matthewnelson.kmp-file:file:0.1.0-alpha02") + implementation("io.matthewnelson.kmp-file:file:0.1.0-alpha03") } ``` -[badge-latest-release]: https://img.shields.io/badge/latest--release-0.1.0--alpha02-blue.svg?style=flat +[badge-latest-release]: https://img.shields.io/badge/latest--release-0.1.0--alpha03-blue.svg?style=flat [badge-license]: https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat diff --git a/gradle.properties b/gradle.properties index 7ec2f69..1a8ddb1 100644 --- a/gradle.properties +++ b/gradle.properties @@ -27,10 +27,10 @@ POM_DEVELOPER_ID=05nelsonm POM_DEVELOPER_NAME=Matthew Nelson POM_DEVELOPER_URL=https://github.com/05nelsonm/ -VERSION_NAME=0.1.0-alpha03-SNAPSHOT +VERSION_NAME=0.1.0-alpha03 # 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-beta01 = 00 01 00 41 +# 0.1.0-rc01 = 00 01 00 71 # 0.1.0 = 00 01 00 99 # 1.1.0 = 01 01 00 99 VERSION_CODE=00010013