Skip to content

Commit 51f2edf

Browse files
committed
Update version to 1.1.0
1 parent f5d8697 commit 51f2edf

File tree

6 files changed

+28
-24
lines changed

6 files changed

+28
-24
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# MMKV-Kotlin Change Log
22

3+
## v1.1.0/2022-04-25
4+
5+
* Update Kotlin and MMKV Version
6+
* Based on `Kotlin 1.6.21`, `MMKV 1.2.13`
7+
8+
* Reamed the `MMKVModel` to `MMKVMode`
9+
310
## v1.0.0/2022-04-19
411

512
* Initial Release

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ Kotlin Multiplatform Common (kts):
1212

1313
```kotlin
1414
dependencies {
15-
implementation("com.ctrip.flight.mmkv:mmkv-kotlin:1.0.0")
15+
implementation("com.ctrip.flight.mmkv:mmkv-kotlin:1.1.0")
1616
}
1717
```
1818

19-
Current version based on `Kotlin 1.6.10` and `MMKV 1.2.12`.
19+
Current version based on `Kotlin 1.6.21` and `MMKV 1.2.13`.
2020

2121
Pure Android platform (kts):
2222

2323
```kotlin
2424
dependencies {
25-
implementation("com.ctrip.flight.mmkv:mmkv-kotlin-android:1.0.0")
25+
implementation("com.ctrip.flight.mmkv:mmkv-kotlin-android:1.1.0")
2626
}
2727
```
2828

README_CN.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@ Kotlin Multiplatform Common (kts):
1010

1111
```kotlin
1212
dependencies {
13-
implementation("com.ctrip.flight.mmkv:mmkv-kotlin:1.0.0")
13+
implementation("com.ctrip.flight.mmkv:mmkv-kotlin:1.1.0")
1414
}
1515
```
1616

17-
当前版本依赖于 `Kotlin 1.6.10` 以及 `MMKV 1.2.12`
17+
当前版本依赖于 `Kotlin 1.6.21` 以及 `MMKV 1.2.13`
1818

1919
纯 Android 平台(kts):
2020

2121
```kotlin
2222
dependencies {
23-
implementation("com.ctrip.flight.mmkv:mmkv-kotlin-android:1.0.0")
23+
implementation("com.ctrip.flight.mmkv:mmkv-kotlin-android:1.1.0")
2424
}
2525
```
2626

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ buildscript {
55
mavenCentral()
66
}
77
dependencies {
8-
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10")
9-
classpath("com.android.tools.build:gradle:7.1.2")
8+
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21")
9+
classpath("com.android.tools.build:gradle:7.1.3")
1010
}
1111
}
1212

mmkv-kotlin/MMKV_Kotlin.podspec

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,21 @@
11
Pod::Spec.new do |spec|
22
spec.name = 'mmkv_kotlin'
3-
spec.version = '1.0.0'
3+
spec.version = '1.1.0'
44
spec.homepage = 'Link to the Shared Module homepage'
5-
spec.source = { :git => "Not Published", :tag => "Cocoapods/#{spec.name}/#{spec.version}" }
5+
spec.source = { :http=> ''}
66
spec.authors = ''
77
spec.license = ''
88
spec.summary = 'Some description for the Shared Module'
9-
10-
spec.vendored_frameworks = "build/cocoapods/framework/MMKV-Kotlin.framework"
11-
spec.libraries = "c++"
12-
spec.module_name = "#{spec.name}_umbrella"
13-
9+
spec.vendored_frameworks = 'build/cocoapods/framework/MMKV-Kotlin.framework'
10+
spec.libraries = 'c++'
1411
spec.ios.deployment_target = '14.1'
15-
16-
spec.dependency 'MMKV', '1.2.12'
17-
12+
spec.dependency 'MMKV', '1.2.13'
13+
1814
spec.pod_target_xcconfig = {
1915
'KOTLIN_PROJECT_PATH' => ':mmkv-kotlin',
20-
'PRODUCT_MODULE_NAME' => 'mmkv_kotlin',
16+
'PRODUCT_MODULE_NAME' => 'MMKV-Kotlin',
2117
}
22-
18+
2319
spec.script_phases = [
2420
{
2521
:name => 'Build mmkv_kotlin',
@@ -35,8 +31,9 @@ Pod::Spec.new do |spec|
3531
"$REPO_ROOT/../gradlew" -p "$REPO_ROOT" $KOTLIN_PROJECT_PATH:syncFramework \
3632
-Pkotlin.native.cocoapods.platform=$PLATFORM_NAME \
3733
-Pkotlin.native.cocoapods.archs="$ARCHS" \
38-
-Pkotlin.native.cocoapods.configuration=$CONFIGURATION
34+
-Pkotlin.native.cocoapods.configuration="$CONFIGURATION"
3935
SCRIPT
4036
}
4137
]
38+
4239
end

mmkv-kotlin/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
signing
88
}
99

10-
version = "1.0.0"
10+
version = "1.1.0"
1111
group = "com.ctrip.flight.mmkv"
1212

1313
val NEXUS_USERNAME: String by project
@@ -81,7 +81,7 @@ kotlin {
8181
}
8282
pod(
8383
name = "MMKV",
84-
version = "1.2.12",
84+
version = "1.2.13",
8585
)
8686
}
8787

@@ -97,7 +97,7 @@ kotlin {
9797
}
9898
val androidMain by getting {
9999
dependencies {
100-
api("com.tencent:mmkv-static:1.2.12")
100+
api("com.tencent:mmkv-static:1.2.13")
101101
}
102102
}
103103
val androidTest by getting {

0 commit comments

Comments
 (0)