Skip to content

Commit 3e6a099

Browse files
committed
v0.1.0
1 parent 216b541 commit 3e6a099

File tree

11 files changed

+15
-15
lines changed

11 files changed

+15
-15
lines changed

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.0-alpha.9
1+
0.1.0

bindings/ruby/lib/version.rb

+1-1
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.9"
3+
VERSION = "0.1.0"
44
end

deno/README.md

+2-2
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]-alpha.9/mod.ts)
6+
[![Doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/[email protected]/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]-alpha.9/mod.ts";
12+
import * as sqlite_http from "https://deno.land/x/[email protected]/mod.ts";
1313

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

deno/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sqlite-http",
3-
"version": "0.1.0-alpha.9",
3+
"version": "0.1.0",
44
"github": "https://github.com/asg017/sqlite-http",
55
"tasks": {
66
"test": "deno test --unstable -A test.ts"

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

+1-1
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-arm64",
4-
"version": "0.1.0-alpha.9",
4+
"version": "0.1.0",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/asg017/sqlite-http.git",

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

+1-1
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.9",
4+
"version": "0.1.0",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/asg017/sqlite-http.git",

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

+1-1
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.9",
4+
"version": "0.1.0",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/asg017/sqlite-http.git",

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

+1-1
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.9",
4+
"version": "0.1.0",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/asg017/sqlite-http.git",

npm/sqlite-http/package.json

+4-4
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",
4-
"version": "0.1.0-alpha.9",
4+
"version": "0.1.0",
55
"description": "",
66
"repository": {
77
"type": "git",
@@ -21,9 +21,9 @@
2121
"*.dll"
2222
],
2323
"optionalDependencies": {
24-
"sqlite-http-darwin-x64": "0.1.0-alpha.9",
25-
"sqlite-http-linux-x64": "0.1.0-alpha.9",
26-
"sqlite-http-windows-x64": "0.1.0-alpha.9"
24+
"sqlite-http-darwin-x64": "0.1.0",
25+
"sqlite-http-linux-x64": "0.1.0",
26+
"sqlite-http-windows-x64": "0.1.0"
2727
},
2828
"devDependencies": {
2929
"better-sqlite3": "^8.1.0",
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "0.1.0-alpha.9"
1+
__version__ = "0.1.0"
22
__version_info__ = tuple(__version__.split("."))
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "0.1.0-alpha.9"
1+
__version__ = "0.1.0"
22
__version_info__ = tuple(__version__.split("."))

0 commit comments

Comments
 (0)