diff --git a/README.md b/README.md index 5ece09ec..21487fe7 100644 --- a/README.md +++ b/README.md @@ -2,31 +2,31 @@ Android SharedPreference delegation for Kotlin. -[![CircleCI](https://circleci.com/gh/chibatching/Kotpref/tree/master.svg?style=svg)](https://circleci.com/gh/chibatching/Kotpref/tree/master) [![kotlin](https://img.shields.io/badge/kotlin-1.3.61-blue.svg)]() [![codecov](https://codecov.io/gh/chibatching/Kotpref/branch/master/graph/badge.svg)](https://codecov.io/gh/chibatching/Kotpref) [![license](https://img.shields.io/github/license/chibatching/Kotpref.svg?maxAge=2592000)]() +[![CircleCI](https://circleci.com/gh/chibatching/Kotpref/tree/master.svg?style=svg)](https://circleci.com/gh/chibatching/Kotpref/tree/master) [![kotlin](https://img.shields.io/badge/kotlin-1.3.72-blue.svg)]() [![codecov](https://codecov.io/gh/chibatching/Kotpref/branch/master/graph/badge.svg)](https://codecov.io/gh/chibatching/Kotpref) [![license](https://img.shields.io/github/license/chibatching/Kotpref.svg?maxAge=2592000)]() ## Install ```groovy dependencies { // core - implementation 'com.chibatching.kotpref:kotpref:2.10.0' + implementation 'com.chibatching.kotpref:kotpref:2.11.0' // optional, auto initialization module - implementation 'com.chibatching.kotpref:initializer:2.10.0' + implementation 'com.chibatching.kotpref:initializer:2.11.0' // optional, support saving enum value and ordinal - implementation 'com.chibatching.kotpref:enum-support:2.10.0' + implementation 'com.chibatching.kotpref:enum-support:2.11.0' // optional, support saving json string through Gson - implementation 'com.chibatching.kotpref:gson-support:2.10.0' - implementation 'com.google.code.gson:gson:2.8.5' + implementation 'com.chibatching.kotpref:gson-support:2.11.0' + implementation 'com.google.code.gson:gson:2.8.6' // optional, support LiveData observable preference - implementation 'com.chibatching.kotpref:livedata-support:2.10.0' - implementation 'androidx.lifecycle:lifecycle-livedata:2.1.0' + implementation 'com.chibatching.kotpref:livedata-support:2.11.0' + implementation 'androidx.lifecycle:lifecycle-livedata:2.2.0' // experimental, preference screen build dsl - implementation 'com.chibatching.kotpref:preference-screen-dsl:2.10.0' + implementation 'com.chibatching.kotpref:preference-screen-dsl:2.11.0' } ``` diff --git a/buildSrc/src/main/java/dependencies/Versions.kt b/buildSrc/src/main/java/dependencies/Versions.kt index 695f0124..15a1cf49 100644 --- a/buildSrc/src/main/java/dependencies/Versions.kt +++ b/buildSrc/src/main/java/dependencies/Versions.kt @@ -2,7 +2,7 @@ package dependencies object Versions { - const val versionName = "2.10.0" + const val versionName = "2.11.0" const val targetSdk = 29 const val minSdk = 9