Skip to content

Commit 3d0dee3

Browse files
committed
release v0.11.1
1 parent f808241 commit 3d0dee3

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

example/ios/Podfile.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -1245,7 +1245,7 @@ PODS:
12451245
- ReactCommon/turbomodule/bridging
12461246
- ReactCommon/turbomodule/core
12471247
- Yoga
1248-
- react-native-mmkv-storage (0.11.0-alpha.0):
1248+
- react-native-mmkv-storage (0.11.0):
12491249
- DoubleConversion
12501250
- glog
12511251
- hermes-engine
@@ -1575,7 +1575,7 @@ DEPENDENCIES:
15751575
- React-logger (from `../node_modules/react-native/ReactCommon/logger`)
15761576
- React-Mapbuffer (from `../node_modules/react-native/ReactCommon`)
15771577
- React-microtasksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/microtasks`)
1578-
- react-native-mmkv-storage (from `../node_modules/react-native-mmkv-storage`)
1578+
- react-native-mmkv-storage (from `../..`)
15791579
- React-nativeconfig (from `../node_modules/react-native/ReactCommon`)
15801580
- React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
15811581
- React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
@@ -1684,7 +1684,7 @@ EXTERNAL SOURCES:
16841684
React-microtasksnativemodule:
16851685
:path: "../node_modules/react-native/ReactCommon/react/nativemodule/microtasks"
16861686
react-native-mmkv-storage:
1687-
:path: "../node_modules/react-native-mmkv-storage"
1687+
:path: "../.."
16881688
React-nativeconfig:
16891689
:path: "../node_modules/react-native/ReactCommon"
16901690
React-NativeModulesApple:
@@ -1780,7 +1780,7 @@ SPEC CHECKSUMS:
17801780
React-logger: 97c9dafae1f1a638001a9d1d0e93d431f2f9cb7b
17811781
React-Mapbuffer: 3146a13424f9fec2ea1f1462d49d566e4d69b732
17821782
React-microtasksnativemodule: 02d218c79c72d373a92a8552183f4ead0d1c6e05
1783-
react-native-mmkv-storage: b0c41424145fdac4d9ae100b3967cbc0103bbd3a
1783+
react-native-mmkv-storage: 05ef240fe45d4aa0f37c645b15f9cb5d99f2c4a1
17841784
React-nativeconfig: 93fe8c85a8c40820c57814e30f3e44b94c995a7b
17851785
React-NativeModulesApple: b3e076fd0d7b73417fe1e8c8b26e3c57ae9b74aa
17861786
React-perflogger: 1c55bcd3c392137cbaf0d21d8bb87ce9a0cebb15

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-mmkv-storage",
3-
"version": "0.11.0",
3+
"version": "0.11.1",
44
"description": "This library aims to provide a fast & reliable solution for you data storage needs in react-native apps. It uses [MMKV](https://github.com/Tencent/MMKV) by Tencent under the hood on Android and iOS both that is used by their WeChat app(more than 1 Billion users). Unlike other storage solutions for React Native, this library lets you store any kind of data type, in any number of database instances, with or without encryption in a very fast and efficient way.",
55
"main": "./dist/index.js",
66
"scripts": {

react-native-mmkv-storage.podspec

+6-1
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,14 @@ Pod::Spec.new do |s|
1111
s.authors = package["author"]
1212
s.platform = :ios, "12.4"
1313
s.source = { :git => "#{s.homepage}", :tag => "V#{s.version}" }
14-
s.source_files = "ios/**/*.{h,m,mm,cpp}"
1514
s.requires_arc = true
1615

16+
if ENV['RCT_NEW_ARCH_ENABLED'] == '1' then
17+
s.source_files = "ios/**/*.{h,mm,cpp}"
18+
else
19+
s.source_files = "ios/*.{h,mm,cpp}"
20+
end
21+
1722
s.dependency 'MMKV', '~> 1.3.9'
1823
if respond_to?(:install_modules_dependencies, true)
1924
install_modules_dependencies(s)

0 commit comments

Comments
 (0)