expo-sqlite 15.0.0 → 15.0.1

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
@@ -10,6 +10,12 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 15.0.1 — 2024-10-25
14
+
15
+ ### 🎉 New features
16
+
17
+ - Added macOS support in expo-sqlite. ([#32181](https://github.com/expo/expo/pull/32181) by [@coolsoftwaretyler](https://github.com/coolsoftwaretyler))
18
+
13
19
  ## 15.0.0 — 2024-10-22
14
20
 
15
21
  ### 🛠 Breaking changes
@@ -3,7 +3,7 @@ import org.apache.tools.ant.taskdefs.condition.Os
3
3
  apply plugin: 'com.android.library'
4
4
 
5
5
  group = 'host.exp.exponent'
6
- version = '15.0.0'
6
+ version = '15.0.1'
7
7
 
8
8
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
9
9
  apply from: expoModulesCorePlugin
@@ -53,7 +53,7 @@ android {
53
53
  namespace "expo.modules.sqlite"
54
54
  defaultConfig {
55
55
  versionCode 18
56
- versionName "15.0.0"
56
+ versionName "15.0.1"
57
57
 
58
58
  externalNativeBuild {
59
59
  cmake {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "expo-sqlite",
3
- "platforms": ["ios", "android"],
4
- "ios": {
3
+ "platforms": ["apple", "android"],
4
+ "apple": {
5
5
  "modules": ["SQLiteModule"]
6
6
  },
7
7
  "android": {
@@ -13,7 +13,8 @@ Pod::Spec.new do |s|
13
13
  s.author = package['author']
14
14
  s.homepage = package['homepage']
15
15
  s.platforms = {
16
- :ios => '15.1'
16
+ :ios => '15.1',
17
+ :osx => '11.0'
17
18
  }
18
19
  s.source = { git: 'https://github.com/expo/expo.git' }
19
20
  s.static_framework = true
@@ -59,5 +60,5 @@ Pod::Spec.new do |s|
59
60
  }
60
61
 
61
62
  s.source_files = "**/*.{c,h,m,swift}"
62
- s.vendored_frameworks = 'crsqlite.xcframework'
63
+ s.ios.vendored_frameworks = 'crsqlite.xcframework'
63
64
  end
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-sqlite",
3
- "version": "15.0.0",
3
+ "version": "15.0.1",
4
4
  "description": "Provides access to a database using SQLite (https://www.sqlite.org/). The database is persisted across restarts of your app.",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -58,5 +58,5 @@
58
58
  "react": "*",
59
59
  "react-native": "*"
60
60
  },
61
- "gitHead": "685ebb8a213326cb33c80281ca8756b374ccb63d"
61
+ "gitHead": "5ad642a63afa9190ceb4e57dd52c8bdf71d93dd8"
62
62
  }