Skip to content

Commit

Permalink
Prepare 0.1.0-alpha03 release
Browse files Browse the repository at this point in the history
  • Loading branch information
05nelsonm committed Jan 1, 2024
1 parent c191bb6 commit 56ca104
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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]
Expand All @@ -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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,12 +158,12 @@ fun nativeMain(f1: File, f2: File) {
<!-- TAG_VERSION -->
```kotlin
dependencies {
implementation("io.matthewnelson.kmp-file:file:0.1.0-alpha02")
implementation("io.matthewnelson.kmp-file:file:0.1.0-alpha03")
}
```

<!-- TAG_VERSION -->
[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

<!-- TAG_DEPENDENCIES -->
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 56ca104

Please sign in to comment.