Skip to content

Commit

Permalink
Prepare 0.1.0-beta02 release
Browse files Browse the repository at this point in the history
  • Loading branch information
05nelsonm committed Mar 4, 2024
1 parent 0c63905 commit 9f4d836
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# CHANGELOG

## Version 0.1.0-beta02 (2024-03-04)
- Fixes `SysTempDir` for Android API 15 and below [[#58]][58]
- Adds `ANDROID.SDK_INT` reflection based API for determining when
operating on Android, and what `android.os.Build.VERSION.SDK_INT` is.
- Falls back to using `NSTemporaryDirectory` when env `TMPDIR` unavailable
on darwin [[#59]][59]
- `File.fOpen` always adds flag `e` for `O_CLOEXEC` on `UNIX` targets if not
present [[#60]][60]

## Version 0.1.0-beta01 (2024-02-25)
- Fixes JS `Buffer.wrap` throwing exception when buffer is empty [[#42]][42]
- Downgrades `DelicateFileApi` annotation to warning [[#43]][43]
Expand Down Expand Up @@ -40,3 +49,6 @@
[43]: https://github.com/05nelsonm/kmp-file/pull/43
[49]: https://github.com/05nelsonm/kmp-file/pull/49
[53]: https://github.com/05nelsonm/kmp-file/pull/53
[58]: https://github.com/05nelsonm/kmp-file/pull/58
[59]: https://github.com/05nelsonm/kmp-file/pull/59
[60]: https://github.com/05nelsonm/kmp-file/pull/60
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,12 +156,12 @@ fun nativeMain(f1: File, f2: File) {
<!-- TAG_VERSION -->
```kotlin
dependencies {
implementation("io.matthewnelson.kmp-file:file:0.1.0-beta01")
implementation("io.matthewnelson.kmp-file:file:0.1.0-beta02")
}
```

<!-- TAG_VERSION -->
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.1.0--beta01-blue.svg?style=flat
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.1.0--beta02-blue.svg?style=flat
[badge-license]: https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat

<!-- TAG_DEPENDENCIES -->
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ POM_DEVELOPER_ID=05nelsonm
POM_DEVELOPER_NAME=Matthew Nelson
POM_DEVELOPER_URL=https://github.com/05nelsonm/

VERSION_NAME=0.1.0-beta02-SNAPSHOT
VERSION_NAME=0.1.0-beta02
# 0.1.0-alpha01 = 00 01 00 11
# 0.1.0-beta01 = 00 01 00 41
# 0.1.0-rc01 = 00 01 00 71
Expand Down

0 comments on commit 9f4d836

Please sign in to comment.