From 14ba2c6c364b1de10117348396ed9df77e3f8c9f Mon Sep 17 00:00:00 2001 From: Takao Chiba Date: Tue, 28 Jul 2026 22:35:18 +0900 Subject: [PATCH] Update Install section to the final release, 2.13.2 The snippet still referenced 2.13.1. All six modules are published at 2.13.2 on Maven Central, which is the last release there will be. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01Ga7khpnpwB5JRMWPD2mX7d --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index ac75ba3..3a6ad2a 100644 --- a/README.md +++ b/README.md @@ -35,24 +35,24 @@ repositories { dependencies { // core - implementation 'com.chibatching.kotpref:kotpref:2.13.1' + implementation 'com.chibatching.kotpref:kotpref:2.13.2' // optional, auto initialization module - implementation 'com.chibatching.kotpref:initializer:2.13.1' + implementation 'com.chibatching.kotpref:initializer:2.13.2' // optional, support saving enum value and ordinal - implementation 'com.chibatching.kotpref:enum-support:2.13.1' + implementation 'com.chibatching.kotpref:enum-support:2.13.2' // optional, support saving json string through Gson - implementation 'com.chibatching.kotpref:gson-support:2.13.1' + implementation 'com.chibatching.kotpref:gson-support:2.13.2' implementation 'com.google.code.gson:gson:2.8.6' // optional, support LiveData observable preference - implementation 'com.chibatching.kotpref:livedata-support:2.13.1' + implementation 'com.chibatching.kotpref:livedata-support:2.13.2' implementation 'androidx.lifecycle:lifecycle-livedata:2.2.0' // experimental, preference screen build dsl - implementation 'com.chibatching.kotpref:preference-screen-dsl:2.13.1' + implementation 'com.chibatching.kotpref:preference-screen-dsl:2.13.2' } ```