Skip to content

Commit

Permalink
Bump version. Release notes.
Browse files Browse the repository at this point in the history
Add SQLite3::VERSION constant
  • Loading branch information
bcardiff committed Nov 8, 2017
1 parent 790d0de commit adf64da
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
2 changes: 1 addition & 1 deletion shard.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: sqlite3
version: 0.8.2
version: 0.8.3

dependencies:
db:
Expand Down
3 changes: 3 additions & 0 deletions src/sqlite3/version.cr
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module SQLite3
VERSION = "0.8.3"
end

0 comments on commit adf64da

Please sign in to comment.