From 925ccfed09a67db62fd2d4713ba7e3e8ef19d61b Mon Sep 17 00:00:00 2001 From: Alex Garcia Date: Fri, 4 Aug 2023 18:26:46 -0700 Subject: [PATCH] v0.1.0-alpha.8 --- VERSION | 2 +- bindings/ruby/lib/version.rb | 2 +- deno/README.md | 4 ++-- deno/deno.json | 2 +- npm/sqlite-http-darwin-arm64/README.md | 9 +++++++++ npm/sqlite-http-darwin-arm64/lib/.gitkeep | 0 npm/sqlite-http-darwin-arm64/package.json | 17 +++++++++++++++++ npm/sqlite-http-darwin-x64/package.json | 2 +- npm/sqlite-http-linux-x64/package.json | 2 +- npm/sqlite-http-windows-x64/package.json | 2 +- npm/sqlite-http/package.json | 8 ++++---- .../datasette_sqlite_http/version.py | 2 +- python/sqlite_http/sqlite_http/version.py | 2 +- 13 files changed, 40 insertions(+), 14 deletions(-) create mode 100644 npm/sqlite-http-darwin-arm64/README.md create mode 100644 npm/sqlite-http-darwin-arm64/lib/.gitkeep create mode 100644 npm/sqlite-http-darwin-arm64/package.json diff --git a/VERSION b/VERSION index ad20019..e7dfad4 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.0-alpha.7 \ No newline at end of file +0.1.0-alpha.8 \ No newline at end of file diff --git a/bindings/ruby/lib/version.rb b/bindings/ruby/lib/version.rb index 93a3e5e..974ea14 100644 --- a/bindings/ruby/lib/version.rb +++ b/bindings/ruby/lib/version.rb @@ -1,4 +1,4 @@ # automatically generated, do not edit by hand. module SqliteHttp - VERSION = "0.1.0-alpha.7" + VERSION = "0.1.0-alpha.8" end diff --git a/deno/README.md b/deno/README.md index 9ca8f28..82b8e05 100644 --- a/deno/README.md +++ b/deno/README.md @@ -3,13 +3,13 @@ # `x/sqlite_http` Deno Module [![Tags](https://img.shields.io/github/release/asg017/sqlite-http)](https://github.com/asg017/sqlite-http/releases) -[![Doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/sqlite-http@0.1.0-alpha.7/mod.ts) +[![Doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/sqlite-http@0.1.0-alpha.8/mod.ts) The [`sqlite-http`](https://github.com/asg017/sqlite-http) SQLite extension is available to Deno developers with the [`x/sqlite_http`](https://deno.land/x/sqlite-http) Deno module. It works with [`x/sqlite3`](https://deno.land/x/sqlite3), the fastest and native Deno SQLite3 module. ```js import { Database } from "https://deno.land/x/sqlite3@0.8.0/mod.ts"; -import * as sqlite_http from "https://deno.land/x/sqlite_http@v0.1.0-alpha.7/mod.ts"; +import * as sqlite_http from "https://deno.land/x/sqlite_http@v0.1.0-alpha.8/mod.ts"; const db = new Database(":memory:"); diff --git a/deno/deno.json b/deno/deno.json index 8aae643..09eb469 100644 --- a/deno/deno.json +++ b/deno/deno.json @@ -1,6 +1,6 @@ { "name": "sqlite-http", - "version": "0.1.0-alpha.7", + "version": "0.1.0-alpha.8", "github": "https://github.com/asg017/sqlite-http", "tasks": { "test": "deno test --unstable -A test.ts" diff --git a/npm/sqlite-http-darwin-arm64/README.md b/npm/sqlite-http-darwin-arm64/README.md new file mode 100644 index 0000000..37ab623 --- /dev/null +++ b/npm/sqlite-http-darwin-arm64/README.md @@ -0,0 +1,9 @@ + + +# sqlite-http-darwin-arm64 + +A `sqlite-http` platform-specific package for `darwin-arm64`. + +When `sqlite-http` is installed and the host computer has a `darwin` operating system with `arm64` architecture, then this package is downloaded with the pre-compiled SQLite extension bundled under `lib/http0.dylib`. At runtime, the `sqlite-http` package will resolve to this platform-specific package for use with [`better-sqlite3`](https://github.com/WiseLibs/better-sqlite3)' or [`node-sqlite3`](https://github.com/TryGhost/node-sqlite3). + +See the `sqlite-http` package for more details. \ No newline at end of file diff --git a/npm/sqlite-http-darwin-arm64/lib/.gitkeep b/npm/sqlite-http-darwin-arm64/lib/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/npm/sqlite-http-darwin-arm64/package.json b/npm/sqlite-http-darwin-arm64/package.json new file mode 100644 index 0000000..68f36cf --- /dev/null +++ b/npm/sqlite-http-darwin-arm64/package.json @@ -0,0 +1,17 @@ +{ + "//": "Autogenerated by the npm_generate_platform_packages.sh script, do not edit by hand", + "name": "sqlite-http-darwin-arm64", + "version": "0.1.0-alpha.8", + "repository": { + "type": "git", + "url": "https://github.com/asg017/sqlite-http.git", + "directory": "npm/sqlite-http-darwin-arm64" + }, + "author": "Alex Garcia ", + "os": [ + "darwin" + ], + "cpu": [ + "arm64" + ] +} \ No newline at end of file diff --git a/npm/sqlite-http-darwin-x64/package.json b/npm/sqlite-http-darwin-x64/package.json index 7d6e79a..61bcbab 100644 --- a/npm/sqlite-http-darwin-x64/package.json +++ b/npm/sqlite-http-darwin-x64/package.json @@ -1,7 +1,7 @@ { "//": "Autogenerated by the npm_generate_platform_packages.sh script, do not edit by hand", "name": "sqlite-http-darwin-x64", - "version": "0.1.0-alpha.7", + "version": "0.1.0-alpha.8", "repository": { "type": "git", "url": "https://github.com/asg017/sqlite-http.git", diff --git a/npm/sqlite-http-linux-x64/package.json b/npm/sqlite-http-linux-x64/package.json index ee5751c..cd048b5 100644 --- a/npm/sqlite-http-linux-x64/package.json +++ b/npm/sqlite-http-linux-x64/package.json @@ -1,7 +1,7 @@ { "//": "Autogenerated by the npm_generate_platform_packages.sh script, do not edit by hand", "name": "sqlite-http-linux-x64", - "version": "0.1.0-alpha.7", + "version": "0.1.0-alpha.8", "repository": { "type": "git", "url": "https://github.com/asg017/sqlite-http.git", diff --git a/npm/sqlite-http-windows-x64/package.json b/npm/sqlite-http-windows-x64/package.json index bb6a783..2ee1489 100644 --- a/npm/sqlite-http-windows-x64/package.json +++ b/npm/sqlite-http-windows-x64/package.json @@ -1,7 +1,7 @@ { "//": "Autogenerated by the npm_generate_platform_packages.sh script, do not edit by hand", "name": "sqlite-http-windows-x64", - "version": "0.1.0-alpha.7", + "version": "0.1.0-alpha.8", "repository": { "type": "git", "url": "https://github.com/asg017/sqlite-http.git", diff --git a/npm/sqlite-http/package.json b/npm/sqlite-http/package.json index a64b055..1d742ec 100644 --- a/npm/sqlite-http/package.json +++ b/npm/sqlite-http/package.json @@ -1,7 +1,7 @@ { "//": "Autogenerated by the npm_generate_platform_packages.sh script, do not edit by hand", "name": "sqlite-http", - "version": "0.1.0-alpha.7", + "version": "0.1.0-alpha.8", "description": "", "repository": { "type": "git", @@ -21,9 +21,9 @@ "*.dll" ], "optionalDependencies": { - "sqlite-http-darwin-x64": "0.1.0-alpha.7", - "sqlite-http-linux-x64": "0.1.0-alpha.7", - "sqlite-http-windows-x64": "0.1.0-alpha.7" + "sqlite-http-darwin-x64": "0.1.0-alpha.8", + "sqlite-http-linux-x64": "0.1.0-alpha.8", + "sqlite-http-windows-x64": "0.1.0-alpha.8" }, "devDependencies": { "better-sqlite3": "^8.1.0", diff --git a/python/datasette_sqlite_http/datasette_sqlite_http/version.py b/python/datasette_sqlite_http/datasette_sqlite_http/version.py index ea42195..d768974 100644 --- a/python/datasette_sqlite_http/datasette_sqlite_http/version.py +++ b/python/datasette_sqlite_http/datasette_sqlite_http/version.py @@ -1,2 +1,2 @@ -__version__ = "0.1.0-alpha.7" +__version__ = "0.1.0-alpha.8" __version_info__ = tuple(__version__.split(".")) diff --git a/python/sqlite_http/sqlite_http/version.py b/python/sqlite_http/sqlite_http/version.py index ea42195..d768974 100644 --- a/python/sqlite_http/sqlite_http/version.py +++ b/python/sqlite_http/sqlite_http/version.py @@ -1,2 +1,2 @@ -__version__ = "0.1.0-alpha.7" +__version__ = "0.1.0-alpha.8" __version_info__ = tuple(__version__.split("."))