Skip to content

Commit

Permalink
Update version, readme, and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
russhwolf committed Nov 2, 2020
1 parent 9172b1c commit c64d31e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 6 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,24 @@
# Changelog #

## v0.6.3 *(2020-11-02)* ##

- Kotlin 1.4.10 for real this time
- Optional `commit` parameter in `AndroidSettings` constructor, which will tell it to use `commit()` instead
of `apply()` when making changes.
- Deprecate `Settings.Companion.invoke()` in the no-arg dependency and replace with `Settings()` factory function.
- Use `androidx.startup` in no-arg dependency instead of a custom `ContentProvider`.

## v0.6.2 *(2020-09-10)* ##
- Kotlin 1.4.10

- ~~Kotlin 1.4.10~~ (Erroneously still built with 1.4.0)

## v0.6.1 *(2020-08-16)* ##

- Kotlin 1.4.0, Gradle 6.6, and Android Gradle Plugin 4.0.1
- Support for both legacy and IR compiler modes in Kotlin/JS

## v0.6 *(2020-04-26)* ##

- Kotlin 1.3.72 and Android Gradle Plugin 3.6.3
- Add `multiplatform-settings-no-arg` module, including common `Settings()` function for easy default configuration
- Experimental `WindowsSettings` implementation via registry
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Then, simply add the dependency to your common source-set dependencies
commonMain {
dependencies {
// ...
implementation("com.russhwolf:multiplatform-settings:0.6.2")
implementation("com.russhwolf:multiplatform-settings:0.6.3")
}
}
```
Expand Down Expand Up @@ -113,7 +113,7 @@ val factory: Settings.Factory = AppleSettings.Factory()
To create a `Settings` instance from common without needing to pass platform-specific dependencies, add the `multiplatform-settings-no-arg` gradle dependency. This exports `multiplatform-settings` as an API dependency, so you can use it as a replacement for that default dependency.

```kotlin
implementation("com.russhwolf:multiplatform-settings-no-arg:0.6.2")
implementation("com.russhwolf:multiplatform-settings-no-arg:0.6.3")
```

Then from common code, you can write
Expand Down Expand Up @@ -207,7 +207,7 @@ Note that for the `AppleSettings` implementation, some entries are unremovable a
A testing dependency is available to aid in testing code that interacts with this library.

```kotlin
implementation("com.russhwolf:multiplatform-settings-test:0.6.2")
implementation("com.russhwolf:multiplatform-settings-test:0.6.3")
```

This includes a `MockSettings` implementation of the `Settings` interface, which is backed by an in-memory `MutableMap` on all platforms.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ plugins {

allprojects {
group = "com.russhwolf"
version = "0.6.2"
version = "0.6.3"

repositories {
google()
Expand Down
2 changes: 1 addition & 1 deletion sample/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ plugins {
}

allprojects {
ext["library_version"] = "0.6.2"
ext["library_version"] = "0.6.3"

repositories {
mavenLocal()
Expand Down

0 comments on commit c64d31e

Please sign in to comment.