Skip to content

Commit 4f80270

Browse files
author
Eric Lange
committed
Version 0.1.3 - Fixed podspec issue
1 parent cc3fd6d commit 4f80270

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

liquidcore/node-sqlite3/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ android {
66
minSdkVersion 16
77
targetSdkVersion 28
88
versionCode 1
9-
versionName "0.1.2"
9+
versionName "0.1.3"
1010
setProperty("archivesBaseName", "node-sqlite3")
1111
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1212
externalNativeBuild {
-3 Bytes
Binary file not shown.

node-sqlite3.podspec

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "node-sqlite3"
3-
s.version = "0.1.2"
3+
s.version = "0.1.3"
44
s.summary = "Asynchronous, non-blocking SQLite3 bindings for LiqudCore"
55

66
s.description = <<-DESC
@@ -21,6 +21,12 @@ Pod::Spec.new do |s|
2121
"liquidcore/ios/*.{h,m,mm}",
2222
"node_modules/nan/*.h"
2323

24+
s.private_header_files = [
25+
"src/*.{h}",
26+
"liquidcore/ios/*.{h}",
27+
"node_modules/nan/*.h"
28+
]
29+
2430
s.libraries = [
2531
'sqlite3', # libsqlite3.tbd
2632
]
@@ -29,6 +35,7 @@ Pod::Spec.new do |s|
2935
:CLANG_WARN_DOCUMENTATION_COMMENTS => 'NO',
3036
:GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS => 'NO',
3137
:GCC_WARN_64_TO_32_BIT_CONVERSION => 'NO',
38+
:CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES => 'YES',
3239
:SYSTEM_HEADER_SEARCH_PATHS => [
3340
"${PODS_CONFIGURATION_BUILD_DIR}/LiquidCore/LiquidCore.framework/PrivateHeaders"
3441
].join(' '),

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@liquidcore/sqlite3",
33
"description": "Asynchronous, non-blocking SQLite3 bindings",
4-
"version": "0.1.2",
4+
"version": "0.1.3",
55
"homepage": "http://github.com/mapbox/node-sqlite3",
66
"author": {
77
"name": "MapBox",

0 commit comments

Comments
 (0)