Skip to content

Commit

Permalink
Documentation and metadata update for 0.2.1 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
TeMPOraL committed Aug 2, 2019
1 parent 7077096 commit be2fcc1
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ <h1>CL-SQLITE</h1>
<p>CL-SQLITE together with this documentation can be downloaded from <a
href="http://common-lisp.net/project/cl-sqlite/releases/cl-sqlite-0.2.tar.gz">http://common-lisp.net/project/cl-sqlite/releases/cl-sqlite-0.2.tar.gz</a>.</p>

<p>CL-SQLITE source code is available in Git repository at <code>git://repo.or.cz/cl-sqlite.git</code> (<a href="http://repo.or.cz/w/cl-sqlite.git">gitweb</a>) and at <code>git://github.com/dmitryvk/cl-sqlite.git</code> (<a href="http://github.com/dmitryvk/cl-sqlite/tree/master">gitweb</a>).</p>
<p>CL-SQLITE source code is available in Git repository at <code>git://repo.or.cz/cl-sqlite.git</code> (<a href="http://repo.or.cz/w/cl-sqlite.git">gitweb</a>) and at <code>git://github.com/TeMPOraL/cl-sqlite.git</code> (<a href="http://github.com/TeMPOraL/cl-sqlite/tree/master">gitweb</a>).</p>

<p>
</blockquote>
Expand Down Expand Up @@ -649,6 +649,7 @@ <h1>CL-SQLITE</h1>
<li><span style="color:gray">13 June 2009</span> <strong>0.1.5</strong> Allow passing pathnames to <a href="#connect">CONNECT</a> function.
<li><span style="color:gray">24 Oct 2009</span> <strong>0.1.6</strong> Add busy-timeout argument to <a href="#connect">CONNECT</a>. Fix library defininitions for running on Microsoft Windows.
<li><span style="color:gray">14 Nov 2010</span> <strong>0.2</strong> 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.
<li><span style="color:gray">02 Aug 2019</span> <strong>0.2.1</strong> Added metadata to system definitions. Fixed symbol conflict with FiveAM in tests. Project maintenance is now handled by Jacek Złydach.
</ul>

<br>&nbsp;<br><h3><a class=none name="ack">Acknowledgements</a></h3>
Expand Down
11 changes: 9 additions & 2 deletions sqlite-tests.asd
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
(defsystem :sqlite-tests
:name "sqlite-tests"
:author "Kalyanov Dmitry <Kalyanov.Dmitry@gmail.com>"
:version "0.1.4"
:maintainer "Jacek Złydach <cl-sqlite@jacek.zlydach.pl>"
: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))

:depends-on (:fiveam :sqlite :bordeaux-threads))
2 changes: 1 addition & 1 deletion sqlite.asd
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit be2fcc1

Please sign in to comment.