Skip to content

Commit

Permalink
change to v1.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
lingol committed Jul 5, 2024
1 parent c44ce1f commit 2315e3a
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Android/MMKV/mmkvdemo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ repositories {

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation project(':mmkv')
// implementation 'com.tencent:mmkv:1.3.6'
// implementation project(':mmkv')
implementation 'com.tencent:mmkv:1.3.6'
// implementation 'com.tencent:mmkv-static:1.3.6' // this is identical to 'com.tencent:mmkv'
// implementation 'com.tencent:mmkv-shared:1.3.6'
implementation 'androidx.appcompat:appcompat:1.6.1'
Expand Down
2 changes: 1 addition & 1 deletion OpenHarmony/MMKV/BuildProfile.ets
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Use these variables when you tailor your ArkTS code. They must be of the const type.
*/
export const HAR_VERSION = '1.3.6-beta3';
export const HAR_VERSION = '1.3.6';
export const BUILD_MODE_NAME = 'release';
export const DEBUG = false;
export const TARGET_NAME = 'default';
Expand Down
4 changes: 2 additions & 2 deletions OpenHarmony/MMKV/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![license](https://img.shields.io/badge/license-BSD_3-brightgreen.svg?style=flat)](https://github.com/Tencent/MMKV/blob/master/LICENSE.TXT)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/Tencent/MMKV/pulls)
[![Release Version](https://img.shields.io/badge/release-1.3.5-brightgreen.svg)](https://github.com/Tencent/MMKV/releases)
[![Release Version](https://img.shields.io/badge/release-1.3.6-brightgreen.svg)](https://github.com/Tencent/MMKV/releases)
[![Platform](https://img.shields.io/badge/Platform-%20HarmonyOS%20NEXT-brightgreen.svg)](https://github.com/Tencent/MMKV/wiki/home)

MMKV is an **efficient**, **small**, **easy-to-use** mobile key-value storage framework used in the WeChat application. It's now available on **HarmonyOS NEXT**.
Expand Down Expand Up @@ -37,7 +37,7 @@ Or, you can add it to your project manually.

```json
"dependencies": {
"@tencent/mmkv": "1.3.5",
"@tencent/mmkv": "1.3.6",
}
```
* Then run
Expand Down
2 changes: 1 addition & 1 deletion OpenHarmony/entry/oh-package-lock.json5

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions flutter/mmkv/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![license](https://img.shields.io/badge/license-BSD_3-brightgreen.svg?style=flat)](https://github.com/Tencent/MMKV/blob/master/LICENSE.TXT)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/Tencent/MMKV/pulls)
[![Release Version](https://img.shields.io/badge/release-1.3.4-brightgreen.svg)](https://github.com/Tencent/MMKV/releases)
[![Release Version](https://img.shields.io/badge/release-1.3.6-brightgreen.svg)](https://github.com/Tencent/MMKV/releases)
[![Platform](https://img.shields.io/badge/Platform-%20Android%20%7C%20iOS-brightgreen.svg)](https://github.com/Tencent/MMKV/wiki/home)

MMKV is an **efficient**, **small**, **easy-to-use** mobile key-value storage framework used in the WeChat application. It's currently available on **Android** and **iOS**.
Expand All @@ -26,11 +26,11 @@ Add the following lines to `pubspec.yaml` on your app module. Then run `flutter

```yaml
dependencies:
mmkv: ">=1.3.4"
mmkv: ">=1.3.6"
...
```

If you already include MMKV native lib in your App, you need to upgrade to version newer than v1.3.4.
If you already include MMKV native lib in your App, you need to upgrade to version newer than v1.3.6.

#### iOS
Starting from v1.3.5, there's **no need** to change the plugin name 'mmkv' to 'mmkvflutter'. You should remove the script (`fix_mmkv_plugin_name()`) previously added in your Podfile.
Expand Down
4 changes: 2 additions & 2 deletions flutter/mmkv_ios/ios/mmkv_ios.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

Pod::Spec.new do |s|
s.name = 'mmkv_ios'
s.version = '1.0.1'
s.version = '1.0.2'
s.summary = 'MMKV is a cross-platform key-value storage framework developed by WeChat.'
s.description = <<-DESC
The MMKV, for Flutter.
Expand All @@ -19,7 +19,7 @@ Pod::Spec.new do |s|
s.source_files = 'Classes/**/*'
s.public_header_files = 'Classes/**/*.h'
s.dependency 'Flutter'
s.dependency 'MMKV', '>= 1.3.5'
s.dependency 'MMKV', '>= 1.3.6'
s.platform = :ios, '12.0'

# Flutter.framework does not contain a i386 slice.
Expand Down

0 comments on commit 2315e3a

Please sign in to comment.