Skip to content

Commit b75e3f1

Browse files
committed
Update version to 1.3.0
1 parent 4a4efa6 commit b75e3f1

File tree

4 files changed

+12
-20
lines changed

4 files changed

+12
-20
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22

33
- Date format: YYYY-MM-dd
44

5-
## v1.3.0 / 2025-xx-xx
5+
## v1.3.0 / 2025-09-x05
66

7+
* Based on `Kotlin 2.2.10`, `MMKV 2.2.3`
78
* Deprecated all `takeXxx` functions, renamed to `getXxx` to avoid confusion ([issue#29](https://github.com/ctripcorp/mmkv-kotlin/issues/29))
89

910
## v1.2.18/ 2025-07-07

gradle/libs.versions.toml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
[versions]
22

3-
kotlin = "2.2.0"
4-
agp = "8.10.1"
5-
mmkv = "2.2.2"
3+
kotlin = "2.2.10"
4+
agp = "8.11.1"
5+
mmkv = "2.2.3"
66
junit = "4.13.2"
7-
androidx-test = "1.6.1"
8-
androidx-test-runner = "1.6.2"
9-
desugar-jdk-libs = "2.1.5"
10-
vanniktech-maven-publish = "0.33.0"
7+
androidx-test = "1.7.0"
8+
androidx-test-runner = "1.7.0"
9+
vanniktech-maven-publish = "0.34.0"
1110

1211
[libraries]
1312

@@ -16,7 +15,6 @@ junit = { group = "junit", name = "junit", version.ref = "junit" }
1615
androidx-test-core = { group = "androidx.test", name = "core", version.ref = "androidx-test" }
1716
androidx-test-runner = { group = "androidx.test", name = "runner", version.ref = "androidx-test-runner" }
1817
androidx-test-rules = { group = "androidx.test", name = "rules", version.ref = "androidx-test" }
19-
desugar-jdk-libs = { group = "com.android.tools", name = "desugar_jdk_libs", version.ref = "desugar-jdk-libs" }
2018

2119
[plugins]
2220

mmkv-kotlin/MMKV_Kotlin.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = 'mmkv_kotlin'
3-
spec.version = '1.2.18'
3+
spec.version = '1.3.0'
44
spec.homepage = 'Link to the Shared Module homepage'
55
spec.source = { :http=> ''}
66
spec.authors = ''
@@ -10,7 +10,7 @@ Pod::Spec.new do |spec|
1010
spec.libraries = 'c++'
1111
spec.ios.deployment_target = '13.0'
1212
spec.osx.deployment_target = '10.15'
13-
spec.dependency 'MMKV', '2.2.2'
13+
spec.dependency 'MMKV', '2.2.3'
1414

1515
if !Dir.exist?('build/cocoapods/framework/MMKV_Kotlin.framework') || Dir.empty?('build/cocoapods/framework/MMKV_Kotlin.framework')
1616
raise "

mmkv-kotlin/build.gradle.kts

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
alias(libs.plugins.vanniktech.maven.publish)
1010
}
1111

12-
version = "1.2.18"
12+
version = "1.3.0"
1313
group = "com.ctrip.flight.mmkv"
1414

1515
@OptIn(ExperimentalKotlinGradlePluginApi::class)
@@ -66,18 +66,11 @@ kotlin {
6666

6767
android {
6868
namespace = "com.ctrip.flight.mmkv"
69-
compileSdk = 35
69+
compileSdk = 36
7070
defaultConfig {
7171
minSdk = 23
7272
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
7373
}
74-
compileOptions {
75-
isCoreLibraryDesugaringEnabled = true
76-
}
77-
}
78-
79-
dependencies {
80-
coreLibraryDesugaring(libs.desugar.jdk.libs)
8174
}
8275

8376
mavenPublishing {

0 commit comments

Comments
 (0)