Bump version 0.10.0. Release notes.

This commit is contained in:
Brian J. Cardiff 2018-06-18 10:31:19 +02:00
parent c1f214d695
commit 2152441749
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
## v0.10.0 (2018-06-18)
* Fix compatibility issues for crystal 0.25.0 ([#34](https://github.com/crystal-lang/crystal-sqlite3/pull/34))
* All the time instances are translated to UTC before saving them in the db
## v0.9.0 (2017-12-31)
* Update to crystal-db ~> 0.5.0

View File

@ -1,5 +1,5 @@
name: sqlite3
version: 0.9.0
version: 0.10.0
dependencies:
db:

View File

@ -1,3 +1,3 @@
module SQLite3
VERSION = "0.9.0"
VERSION = "0.10.0"
end