mirror of
https://gitea.invidious.io/iv-org/shard-crystal-sqlite3.git
synced 2024-08-15 00:53:26 +00:00
Bump version. Release notes.
Add SQLite3::VERSION constant
This commit is contained in:
parent
790d0ded8b
commit
adf64daa08
3 changed files with 13 additions and 1 deletions
9
CHANGELOG.md
Normal file
9
CHANGELOG.md
Normal file
|
@ -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)
|
|
@ -1,5 +1,5 @@
|
|||
name: sqlite3
|
||||
version: 0.8.2
|
||||
version: 0.8.3
|
||||
|
||||
dependencies:
|
||||
db:
|
||||
|
|
3
src/sqlite3/version.cr
Normal file
3
src/sqlite3/version.cr
Normal file
|
@ -0,0 +1,3 @@
|
|||
module SQLite3
|
||||
VERSION = "0.8.3"
|
||||
end
|
Loading…
Reference in a new issue