From a689c3ec85d05b3a5379f473c685fd108c6b471b Mon Sep 17 00:00:00 2001 From: hellerve Date: Mon, 22 Jun 2020 13:08:06 +0200 Subject: [PATCH] version bump --- README.md | 4 ++-- docs/SQLite3.html | 4 ++-- sqlite3.carp | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index dd42c80..17e6a1c 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ everything, but it tries to be useful. ## Installation ```clojure -(load "https://veitheller.de/git/carpentry/sqlite3@0.0.3") +(load "https://veitheller.de/git/carpentry/sqlite3@0.0.4") ``` ## Usage @@ -15,7 +15,7 @@ The module `SQLite3` provides facilities for opening, closing, and querying databases. ```clojure -(load "https://veitheller.de/git/carpentry/sqlite3@0.0.1") +(load "https://veitheller.de/git/carpentry/sqlite3@0.0.4") ; opening DBs can fail, for the purposes of this example we ; ignore that diff --git a/docs/SQLite3.html b/docs/SQLite3.html index d7bd998..43d61f3 100644 --- a/docs/SQLite3.html +++ b/docs/SQLite3.html @@ -32,12 +32,12 @@

is a simple high-level wrapper around SQLite3. It doesn’t intend to wrap everything, but it tries to be useful.

Installation

-
(load "https://veitheller.de/git/carpentry/sqlite3@0.0.3")
+
(load "https://veitheller.de/git/carpentry/sqlite3@0.0.4")
 

Usage

The module SQLite3 provides facilities for opening, closing, and querying databases.

-
(load "https://veitheller.de/git/carpentry/sqlite3@0.0.3")
+
(load "https://veitheller.de/git/carpentry/sqlite3@0.0.4")
 
 ; opening DBs can fail, for the purposes of this example we
 ; ignore that
diff --git a/sqlite3.carp b/sqlite3.carp
index 245972f..ba84598 100644
--- a/sqlite3.carp
+++ b/sqlite3.carp
@@ -7,7 +7,7 @@ to wrap everything, but it tries to be useful.
 ## Installation
 
 ```clojure
-(load \"https://veitheller.de/git/carpentry/sqlite3@0.0.3\")
+(load \"https://veitheller.de/git/carpentry/sqlite3@0.0.4\")
 ```
 
 ## Usage
@@ -16,7 +16,7 @@ The module `SQLite3` provides facilities for opening, closing, and querying
 databases.
 
 ```clojure
-(load \"https://veitheller.de/git/carpentry/sqlite3@0.0.3\")
+(load \"https://veitheller.de/git/carpentry/sqlite3@0.0.4\")
 
 ; opening DBs can fail, for the purposes of this example we
 ; ignore that