Release 0.11.0 (#39)

This commit is contained in:
Brian J. Cardiff 2019-04-19 02:03:29 -03:00 committed by GitHub
parent c621a9b701
commit ba1763b3a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
## v0.11.0 (2019-04-18)
* Fix compatibility issues for crystal 0.28.0 ([#38](https://github.com/crystal-lang/crystal-sqlite3/pull/38))
* Add complete list of `LibSQLite3::Code` values. ([#36](https://github.com/crystal-lang/crystal-sqlite3/pull/36), thanks @t-richards)
## v0.10.0 (2018-06-18)
* Fix compatibility issues for crystal 0.25.0 ([#34](https://github.com/crystal-lang/crystal-sqlite3/pull/34))

View File

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

View File

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