Skip to content

Commit 925ccfe

Browse files
committed
v0.1.0-alpha.8
1 parent 4ed110c commit 925ccfe

File tree

13 files changed

+40
-14
lines changed

13 files changed

+40
-14
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.0-alpha.7
1+
0.1.0-alpha.8

bindings/ruby/lib/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# automatically generated, do not edit by hand.
22
module SqliteHttp
3-
VERSION = "0.1.0-alpha.7"
3+
VERSION = "0.1.0-alpha.8"
44
end

deno/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
# `x/sqlite_http` Deno Module
44

55
[![Tags](https://img.shields.io/github/release/asg017/sqlite-http)](https://github.com/asg017/sqlite-http/releases)
6-
[![Doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/[email protected].7/mod.ts)
6+
[![Doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/[email protected].8/mod.ts)
77

88
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.
99

1010
```js
1111
import { Database } from "https://deno.land/x/[email protected]/mod.ts";
12-
import * as sqlite_http from "https://deno.land/x/[email protected].7/mod.ts";
12+
import * as sqlite_http from "https://deno.land/x/[email protected].8/mod.ts";
1313

1414
const db = new Database(":memory:");
1515

deno/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sqlite-http",
3-
"version": "0.1.0-alpha.7",
3+
"version": "0.1.0-alpha.8",
44
"github": "https://github.com/asg017/sqlite-http",
55
"tasks": {
66
"test": "deno test --unstable -A test.ts"
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<!--- Generated with the npm_generate_platform_packages.sh script, don't edit by hand -->
2+
3+
# sqlite-http-darwin-arm64
4+
5+
A `sqlite-http` platform-specific package for `darwin-arm64`.
6+
7+
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).
8+
9+
See the `sqlite-http` package for more details.

npm/sqlite-http-darwin-arm64/lib/.gitkeep

Whitespace-only changes.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"//": "Autogenerated by the npm_generate_platform_packages.sh script, do not edit by hand",
3+
"name": "sqlite-http-darwin-arm64",
4+
"version": "0.1.0-alpha.8",
5+
"repository": {
6+
"type": "git",
7+
"url": "https://github.com/asg017/sqlite-http.git",
8+
"directory": "npm/sqlite-http-darwin-arm64"
9+
},
10+
"author": "Alex Garcia <[email protected]>",
11+
"os": [
12+
"darwin"
13+
],
14+
"cpu": [
15+
"arm64"
16+
]
17+
}

npm/sqlite-http-darwin-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"//": "Autogenerated by the npm_generate_platform_packages.sh script, do not edit by hand",
33
"name": "sqlite-http-darwin-x64",
4-
"version": "0.1.0-alpha.7",
4+
"version": "0.1.0-alpha.8",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/asg017/sqlite-http.git",

npm/sqlite-http-linux-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"//": "Autogenerated by the npm_generate_platform_packages.sh script, do not edit by hand",
33
"name": "sqlite-http-linux-x64",
4-
"version": "0.1.0-alpha.7",
4+
"version": "0.1.0-alpha.8",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/asg017/sqlite-http.git",

npm/sqlite-http-windows-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"//": "Autogenerated by the npm_generate_platform_packages.sh script, do not edit by hand",
33
"name": "sqlite-http-windows-x64",
4-
"version": "0.1.0-alpha.7",
4+
"version": "0.1.0-alpha.8",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/asg017/sqlite-http.git",

0 commit comments

Comments
 (0)