expo-secure-store 14.0.0-canary-20241021-c4b5a93 → 14.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -4,6 +4,16 @@
4
4
 
5
5
  ### 🛠 Breaking changes
6
6
 
7
+ ### 🎉 New features
8
+
9
+ ### 🐛 Bug fixes
10
+
11
+ ### 💡 Others
12
+
13
+ ## 14.0.0 — 2024-10-22
14
+
15
+ ### 🛠 Breaking changes
16
+
7
17
  - Bumped iOS deployment target to 15.1. ([#30840](https://github.com/expo/expo/pull/30840) by [@tsapeta](https://github.com/tsapeta))
8
18
 
9
19
  ### 🎉 New features
@@ -11,8 +21,6 @@
11
21
  - [Android] Add a config plugin for configuring the Android backup system. ([#29944](https://github.com/expo/expo/pull/29944) by [@behenate](https://github.com/behenate))
12
22
  - Add Apple TV support. ([#31374](https://github.com/expo/expo/pull/31374) by [@douglowder](https://github.com/douglowder))
13
23
 
14
- ### 🐛 Bug fixes
15
-
16
24
  ### 💡 Others
17
25
 
18
26
  - [iOS] check return value of SecAccessControlCreateWithFlags ([#29983](https://github.com/expo/expo/pull/29983) by [@vonovak](https://github.com/vonovak))
@@ -1,7 +1,7 @@
1
1
  apply plugin: 'com.android.library'
2
2
 
3
3
  group = 'host.exp.exponent'
4
- version = '13.0.1'
4
+ version = '14.0.0'
5
5
 
6
6
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
7
7
  apply from: expoModulesCorePlugin
@@ -14,7 +14,7 @@ android {
14
14
  namespace "expo.modules.securestore"
15
15
  defaultConfig {
16
16
  versionCode 17
17
- versionName '13.0.1'
17
+ versionName '14.0.0'
18
18
  }
19
19
  }
20
20
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-secure-store",
3
- "version": "14.0.0-canary-20241021-c4b5a93",
3
+ "version": "14.0.0",
4
4
  "description": "Provides a way to encrypt and securely store key-value pairs locally on the device.",
5
5
  "main": "build/SecureStore.js",
6
6
  "types": "build/SecureStore.d.ts",
@@ -37,10 +37,10 @@
37
37
  },
38
38
  "dependencies": {},
39
39
  "devDependencies": {
40
- "expo-module-scripts": "3.6.0-canary-20241021-c4b5a93"
40
+ "expo-module-scripts": "^4.0.0"
41
41
  },
42
42
  "peerDependencies": {
43
- "expo": "52.0.0-canary-20241021-c4b5a93"
43
+ "expo": "*"
44
44
  },
45
- "gitHead": "c4b5a932011f3dfab7a0302ff32cce7c33aa7c28"
45
+ "gitHead": "685ebb8a213326cb33c80281ca8756b374ccb63d"
46
46
  }