From 3518c9762aa8736805d4e413867ff1449dc041ab Mon Sep 17 00:00:00 2001 From: Dj <43033058+DjDeveloperr@users.noreply.github.com> Date: Tue, 7 Feb 2023 13:07:41 +0530 Subject: [PATCH] 0.8.0 --- README.md | 6 +++--- deno.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f566ac1..6d1d297 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Deno SQLite3 [![Tags](https://img.shields.io/github/release/denodrivers/sqlite3)](https://github.com/denodrivers/sqlite3/releases) -[![Doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/sqlite3@0.7.3/mod.ts) +[![Doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/sqlite3@0.8.0/mod.ts) [![Checks](https://github.com/denodrivers/sqlite3/actions/workflows/ci.yml/badge.svg)](https://github.com/denodrivers/sqlite3/actions/workflows/ci.yml) [![License](https://img.shields.io/github/license/denodrivers/sqlite3)](https://github.com/denodrivers/sqlite3/blob/master/LICENSE) [![Sponsor](https://img.shields.io/static/v1?label=Sponsor&message=%E2%9D%A4&logo=GitHub&color=%23fe8e86)](https://github.com/sponsors/DjDeveloperr) @@ -11,7 +11,7 @@ The fastest and correct module for SQLite3 in Deno. ## Example ```ts -import { Database } from "https://deno.land/x/sqlite3@0.7.3/mod.ts"; +import { Database } from "https://deno.land/x/sqlite3@0.8.0/mod.ts"; const db = new Database("test.db"); @@ -47,7 +47,7 @@ See [doc.md](https://github.com/denodrivers/sqlite3/blob/main/doc.md) for documentation. Check out the complete API reference -[here](https://doc.deno.land/https://deno.land/x/sqlite3@0.7.3/mod.ts). +[here](https://doc.deno.land/https://deno.land/x/sqlite3@0.8.0/mod.ts). ## Native Library diff --git a/deno.json b/deno.json index bfba50e..07a4f1e 100644 --- a/deno.json +++ b/deno.json @@ -1,6 +1,6 @@ { "name": "sqlite3", - "version": "0.7.3", + "version": "0.8.0", "github": "https://github.com/denodrivers/sqlite3", "tasks": {