Skip to content

Commit 56af58c

Browse files
committed
fix(workflow): npm warn publish "repository.url" was normalized to "git+https://github.com/sqliteai/sqlite-js.git"
1 parent eeff1a2 commit 56af58c

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

packages/flutter/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## 1.1.16
3+
## 1.1.17
44

55
- Initial Flutter package release
66
- Added support for Android 16kb page size devices

packages/flutter/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: sqlite_js
2-
version: 1.1.16
2+
version: 1.1.17
33
description: >
44
SQLite JS is a powerful extension that brings JavaScript capabilities to SQLite.
55
With this extension, you can create custom SQLite functions, aggregates,

packages/node/generate-platform-packages.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ function generatePackageJson(platform, version) {
102102
license: 'SEE LICENSE IN LICENSE.md',
103103
repository: {
104104
type: 'git',
105-
url: 'https://github.com/sqliteai/sqlite-js.git',
105+
url: 'git+https://github.com/sqliteai/sqlite-js.git',
106106
directory: 'packages/node',
107107
},
108108
engines: {

packages/node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"license": "SEE LICENSE IN LICENSE.md",
4242
"repository": {
4343
"type": "git",
44-
"url": "https://github.com/sqliteai/sqlite-js.git",
44+
"url": "git+https://github.com/sqliteai/sqlite-js.git",
4545
"directory": "packages/node"
4646
},
4747
"homepage": "https://github.com/sqliteai/sqlite-js#readme",

src/sqlitejs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#include "sqlite3.h"
1717
#endif
1818

19-
#define SQLITE_JS_VERSION "1.1.16"
19+
#define SQLITE_JS_VERSION "1.1.17"
2020

2121
int sqlite3_js_init (sqlite3 *db, char **pzErrMsg, const sqlite3_api_routines *pApi);
2222
const char *sqlitejs_version (void);

0 commit comments

Comments
 (0)