Skip to content

Commit c830501

Browse files
committed
v0.1.2-alpha.6
1 parent 89fa2d9 commit c830501

File tree

10 files changed

+14
-14
lines changed

10 files changed

+14
-14
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.2-alpha.5
1+
0.1.2-alpha.6

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 SqliteHtml
3-
VERSION = "0.1.2-alpha.5"
3+
VERSION = "0.1.2-alpha.6"
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_html` Deno Module
44

55
[![Tags](https://img.shields.io/github/release/asg017/sqlite-html)](https://github.com/asg017/sqlite-html/releases)
6-
[![Doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/sqlite-html@0.1.2-alpha.5/mod.ts)
6+
[![Doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/sqlite-html@0.1.2-alpha.6/mod.ts)
77

88
The [`sqlite-html`](https://github.com/asg017/sqlite-html) SQLite extension is available to Deno developers with the [`x/sqlite_html`](https://deno.land/x/sqlite-html) 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/sqlite3@0.8.0/mod.ts";
12-
import * as sqlite_html from "https://deno.land/x/sqlite_html@v0.1.2-alpha.5/mod.ts";
12+
import * as sqlite_html from "https://deno.land/x/sqlite_html@v0.1.2-alpha.6/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-html",
3-
"version": "0.1.2-alpha.5",
3+
"version": "0.1.2-alpha.6",
44
"github": "https://github.com/asg017/sqlite-html",
55
"tasks": {
66
"test": "deno test --unstable -A test.ts"

npm/sqlite-html-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-html-darwin-x64",
4-
"version": "0.1.2-alpha.5",
4+
"version": "0.1.2-alpha.6",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/asg017/sqlite-html.git",

npm/sqlite-html-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-html-linux-x64",
4-
"version": "0.1.2-alpha.5",
4+
"version": "0.1.2-alpha.6",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/asg017/sqlite-html.git",

npm/sqlite-html-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-html-windows-x64",
4-
"version": "0.1.2-alpha.5",
4+
"version": "0.1.2-alpha.6",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/asg017/sqlite-html.git",

npm/sqlite-html/package.json

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

0 commit comments

Comments
 (0)