Skip to content

Commit

Permalink
release v0.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ammarahm-ed committed Nov 3, 2024
1 parent f808241 commit 3d0dee3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
8 changes: 4 additions & 4 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1245,7 +1245,7 @@ PODS:
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- Yoga
- react-native-mmkv-storage (0.11.0-alpha.0):
- react-native-mmkv-storage (0.11.0):
- DoubleConversion
- glog
- hermes-engine
Expand Down Expand Up @@ -1575,7 +1575,7 @@ DEPENDENCIES:
- React-logger (from `../node_modules/react-native/ReactCommon/logger`)
- React-Mapbuffer (from `../node_modules/react-native/ReactCommon`)
- React-microtasksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/microtasks`)
- react-native-mmkv-storage (from `../node_modules/react-native-mmkv-storage`)
- react-native-mmkv-storage (from `../..`)
- React-nativeconfig (from `../node_modules/react-native/ReactCommon`)
- React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
- React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
Expand Down Expand Up @@ -1684,7 +1684,7 @@ EXTERNAL SOURCES:
React-microtasksnativemodule:
:path: "../node_modules/react-native/ReactCommon/react/nativemodule/microtasks"
react-native-mmkv-storage:
:path: "../node_modules/react-native-mmkv-storage"
:path: "../.."
React-nativeconfig:
:path: "../node_modules/react-native/ReactCommon"
React-NativeModulesApple:
Expand Down Expand Up @@ -1780,7 +1780,7 @@ SPEC CHECKSUMS:
React-logger: 97c9dafae1f1a638001a9d1d0e93d431f2f9cb7b
React-Mapbuffer: 3146a13424f9fec2ea1f1462d49d566e4d69b732
React-microtasksnativemodule: 02d218c79c72d373a92a8552183f4ead0d1c6e05
react-native-mmkv-storage: b0c41424145fdac4d9ae100b3967cbc0103bbd3a
react-native-mmkv-storage: 05ef240fe45d4aa0f37c645b15f9cb5d99f2c4a1
React-nativeconfig: 93fe8c85a8c40820c57814e30f3e44b94c995a7b
React-NativeModulesApple: b3e076fd0d7b73417fe1e8c8b26e3c57ae9b74aa
React-perflogger: 1c55bcd3c392137cbaf0d21d8bb87ce9a0cebb15
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-mmkv-storage",
"version": "0.11.0",
"version": "0.11.1",
"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.",
"main": "./dist/index.js",
"scripts": {
Expand Down
7 changes: 6 additions & 1 deletion react-native-mmkv-storage.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,14 @@ Pod::Spec.new do |s|
s.authors = package["author"]
s.platform = :ios, "12.4"
s.source = { :git => "#{s.homepage}", :tag => "V#{s.version}" }
s.source_files = "ios/**/*.{h,m,mm,cpp}"
s.requires_arc = true

if ENV['RCT_NEW_ARCH_ENABLED'] == '1' then
s.source_files = "ios/**/*.{h,mm,cpp}"
else
s.source_files = "ios/*.{h,mm,cpp}"
end

s.dependency 'MMKV', '~> 1.3.9'
if respond_to?(:install_modules_dependencies, true)
install_modules_dependencies(s)
Expand Down

0 comments on commit 3d0dee3

Please sign in to comment.