From adf64daa08d6155fd824dc2aa49e4992ecc12516 Mon Sep 17 00:00:00 2001 From: "Brian J. Cardiff" Date: Tue, 7 Nov 2017 23:49:41 -0300 Subject: [PATCH] Bump version. Release notes. Add SQLite3::VERSION constant --- CHANGELOG.md | 9 +++++++++ shard.yml | 2 +- src/sqlite3/version.cr | 3 +++ 3 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md create mode 100644 src/sqlite3/version.cr diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..f81dbc5 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,9 @@ +## v0.8.3 (2017-11-07) + +* Update to crystal-db ~> 0.4.1 +* Add `SQLite3::VERSION` constant with shard version. +* Add support for multi-steps statements execution. (see [#27](https://github.com/crystal-lang/crystal-sqlite3/pull/27), thanks @t-richards) +* Fix how resources are released. (see [#23](https://github.com/crystal-lang/crystal-sqlite3/pull/23), thanks @benoist) +* Fix blob c bindings. (see [#28](https://github.com/crystal-lang/crystal-sqlite3/pull/28), thanks @rufusroflpunch) + +## v0.8.2 (2017-03-21) diff --git a/shard.yml b/shard.yml index dc1d2c7..18a7ebf 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: sqlite3 -version: 0.8.2 +version: 0.8.3 dependencies: db: diff --git a/src/sqlite3/version.cr b/src/sqlite3/version.cr new file mode 100644 index 0000000..6926091 --- /dev/null +++ b/src/sqlite3/version.cr @@ -0,0 +1,3 @@ +module SQLite3 + VERSION = "0.8.3" +end