From be2fcc193f98e3d5bdc85958a806d612cc48740c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jacek=20TeMPOraL=20Z=C5=82ydach?= Date: Fri, 2 Aug 2019 12:12:58 +0200 Subject: [PATCH] Documentation and metadata update for 0.2.1 release. --- index.html | 3 ++- sqlite-tests.asd | 11 +++++++++-- sqlite.asd | 2 +- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index eb7d18c..cfab9f9 100644 --- a/index.html +++ b/index.html @@ -43,7 +43,7 @@

CL-SQLITE together with this documentation can be downloaded from http://common-lisp.net/project/cl-sqlite/releases/cl-sqlite-0.2.tar.gz.

-

CL-SQLITE source code is available in Git repository at git://repo.or.cz/cl-sqlite.git (gitweb) and at git://github.com/dmitryvk/cl-sqlite.git (gitweb).

+

CL-SQLITE source code is available in Git repository at git://repo.or.cz/cl-sqlite.git (gitweb) and at git://github.com/TeMPOraL/cl-sqlite.git (gitweb).

@@ -649,6 +649,7 @@ This project has a 13 June 2009 0.1.5 Allow passing pathnames to CONNECT function.

  • 24 Oct 2009 0.1.6 Add busy-timeout argument to CONNECT. Fix library defininitions for running on Microsoft Windows.
  • 14 Nov 2010 0.2 Added support for named parameters. Made statement reset and connection close more safe by clearing statements' bindings and unbinding slot of connection object. Added error condition for SQLite errors. Changes are courtesy of Alexander Gavrilov. +
  • 02 Aug 2019 0.2.1 Added metadata to system definitions. Fixed symbol conflict with FiveAM in tests. Project maintenance is now handled by Jacek Złydach.
     

    Acknowledgements

    diff --git a/sqlite-tests.asd b/sqlite-tests.asd index 108d406..25700db 100644 --- a/sqlite-tests.asd +++ b/sqlite-tests.asd @@ -1,7 +1,14 @@ (defsystem :sqlite-tests :name "sqlite-tests" :author "Kalyanov Dmitry " - :version "0.1.4" + :maintainer "Jacek Złydach " + :description "Tests for CL-SQLITE, an interface to the SQLite embedded relational database engine." + :homepage "https://common-lisp.net/project/cl-sqlite/" + :source-control (:git "git@github.com:TeMPOraL/cl-sqlite.git") + :bug-tracker "https://github.com/TeMPOraL/cl-sqlite/issues" + :version "0.2.1" :license "Public Domain" + :components ((:file "sqlite-tests")) - :depends-on (:fiveam :sqlite :bordeaux-threads)) \ No newline at end of file + + :depends-on (:fiveam :sqlite :bordeaux-threads)) diff --git a/sqlite.asd b/sqlite.asd index 19e19dd..0e292f2 100644 --- a/sqlite.asd +++ b/sqlite.asd @@ -6,7 +6,7 @@ :homepage "https://common-lisp.net/project/cl-sqlite/" :source-control (:git "git@github.com:TeMPOraL/cl-sqlite.git") :bug-tracker "https://github.com/TeMPOraL/cl-sqlite/issues" - :version "0.2" + :version "0.2.1" :license "Public Domain" :components ((:file "sqlite-ffi") -- 2.11.4.GIT