Skip to content

Commit

Permalink
Version 0.1.3 - Fixed podspec issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ericwlange committed Feb 8, 2019
1 parent cc3fd6d commit 4f80270
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion liquidcore/node-sqlite3/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ android {
minSdkVersion 16
targetSdkVersion 28
versionCode 1
versionName "0.1.2"
versionName "0.1.3"
setProperty("archivesBaseName", "node-sqlite3")
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
externalNativeBuild {
Expand Down
Binary file modified liquidcore/release/node-sqlite3-release.aar
Binary file not shown.
9 changes: 8 additions & 1 deletion node-sqlite3.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "node-sqlite3"
s.version = "0.1.2"
s.version = "0.1.3"
s.summary = "Asynchronous, non-blocking SQLite3 bindings for LiqudCore"

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

s.private_header_files = [
"src/*.{h}",
"liquidcore/ios/*.{h}",
"node_modules/nan/*.h"
]

s.libraries = [
'sqlite3', # libsqlite3.tbd
]
Expand All @@ -29,6 +35,7 @@ Pod::Spec.new do |s|
:CLANG_WARN_DOCUMENTATION_COMMENTS => 'NO',
:GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS => 'NO',
:GCC_WARN_64_TO_32_BIT_CONVERSION => 'NO',
:CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES => 'YES',
:SYSTEM_HEADER_SEARCH_PATHS => [
"${PODS_CONFIGURATION_BUILD_DIR}/LiquidCore/LiquidCore.framework/PrivateHeaders"
].join(' '),
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@liquidcore/sqlite3",
"description": "Asynchronous, non-blocking SQLite3 bindings",
"version": "0.1.2",
"version": "0.1.3",
"homepage": "http://github.com/mapbox/node-sqlite3",
"author": {
"name": "MapBox",
Expand Down

0 comments on commit 4f80270

Please sign in to comment.