diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e37f00..8095b43 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,12 @@ All notable changes to this project will be documented in this file. ### Changed +## [0.2.1] - 2024-04-23 + +### Fixes + +- NSHomeDirectory is only allowed to be written on iOS Simulators, but not on physical devices #33 + ## [0.2.0] - 2024-04-21 This version contains general house keeping, dependencies updates and ci improvement for better maintainability. diff --git a/README.md b/README.md index 8679fa5..536baa2 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ repositories { } dependencies { - implementation("me.sujanpoudel.multiplatform.utils:multiplatform-paths:0.2.0") + implementation("me.sujanpoudel.multiplatform.utils:multiplatform-paths:0.2.1") } ``` @@ -113,7 +113,7 @@ repositories { } dependencies { - implementation("me.sujanpoudel.multiplatform.utils:platform-identifier:0.2.0") + implementation("me.sujanpoudel.multiplatform.utils:platform-identifier:0.2.1") } ``` @@ -177,7 +177,7 @@ repositories { } dependencies { - implementation("me.sujanpoudel.multiplatform.utils:context-provider:0.2.0") + implementation("me.sujanpoudel.multiplatform.utils:context-provider:0.2.1") } ```