Skip to content

Commit 63f936a

Browse files
committed
fix(ci): publish flutter package workflow, enable offline error test and bump version to 0.8.67
1 parent 1e29327 commit 63f936a

File tree

4 files changed

+3
-19
lines changed

4 files changed

+3
-19
lines changed

.github/workflows/flutter-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,4 @@ jobs:
8080
# Publish to pub.dev
8181
cd $FLUTTER_DIR
8282
dart pub get
83-
dart pub publish --force --skip-validation
83+
dart pub publish --force

packages/flutter/CHANGELOG.md

Lines changed: 0 additions & 16 deletions
This file was deleted.

src/cloudsync.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
extern "C" {
2121
#endif
2222

23-
#define CLOUDSYNC_VERSION "0.8.66"
23+
#define CLOUDSYNC_VERSION "0.8.67"
2424

2525
int sqlite3_cloudsync_init (sqlite3 *db, char **pzErrMsg, const sqlite3_api_routines *pApi);
2626

test/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ int main (void) {
465465
rc += test_report("Is Enabled Test:", test_is_enabled(DB_PATH));
466466
rc += test_report("DB Version Test:", test_db_version(DB_PATH));
467467
rc += test_report("Enable Disable Test:", test_enable_disable(DB_PATH));
468-
// rc += test_report("Offline Error Test:", test_offline_error(":memory:"));
468+
rc += test_report("Offline Error Test:", test_offline_error(":memory:"));
469469
rc += test_report("Double Empty Init Test:", test_double_empty_network_init(":memory:"));
470470

471471
remove(DB_PATH); // remove the database file

0 commit comments

Comments
 (0)