diff --git a/CHANGELOG.md b/CHANGELOG.md index ff23ff5..1b1ddf7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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)) diff --git a/shard.yml b/shard.yml index 98acdb3..05fc90f 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: sqlite3 -version: 0.10.0 +version: 0.11.0 dependencies: db: diff --git a/src/sqlite3/version.cr b/src/sqlite3/version.cr index 64c572f..77ad34a 100644 --- a/src/sqlite3/version.cr +++ b/src/sqlite3/version.cr @@ -1,3 +1,3 @@ module SQLite3 - VERSION = "0.10.0" + VERSION = "0.11.0" end