summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--QuickJS-android/gradle.properties4
-rw-r--r--tart_module.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/QuickJS-android/gradle.properties b/QuickJS-android/gradle.properties
index 20d2619..5e3ad28 100644
--- a/QuickJS-android/gradle.properties
+++ b/QuickJS-android/gradle.properties
@@ -2,7 +2,7 @@ android.useAndroidX=true
GROUP=net.taler
POM_ARTIFACT_ID=qtart
-VERSION_NAME=0.10.2
+VERSION_NAME=0.10.6
POM_NAME=QuickjsTart
POM_DESCRIPTION=QuickJS runtime for Taler
@@ -21,4 +21,4 @@ POM_DEVELOPER_ID=avalos
POM_DEVELOPER_NAME=Iván Ávalos
POM_DEVELOPER_URL=https://avalos.me/
-WALLET_CORE_VERSION=v0.10.2
+WALLET_CORE_VERSION=v0.10.6
diff --git a/tart_module.c b/tart_module.c
index 81d5e9b..cdc1895 100644
--- a/tart_module.c
+++ b/tart_module.c
@@ -1598,7 +1598,7 @@ static JSValue js_sqlite3_open(JSContext *ctx, JSValue this_val,
goto done;
}
- fprintf(stderr, "opening sqlite3 db at %s", filename),
+ fprintf(stderr, "opening sqlite3 db at %s\n", filename),
ret = sqlite3_open_v2(filename, &sqlite3_db, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, NULL);
if (SQLITE_OK != ret) {
if (NULL == sqlite3_db) {