diff --git a/CHANGELOG.md b/CHANGELOG.md index 753f819..c0816f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## v0.19.0 (2022-01-28) + +* Update to crystal-db ~> 0.11.0. ([#77](https://github.com/crystal-lang/crystal-sqlite3/pull/77)) +* Fix timestamps support to allow dealing with exact seconds values ([#68](https://github.com/crystal-lang/crystal-sqlite3/pull/68), thanks @yujiri8, @tenebrousedge) +* Migrate CI to GitHub Actions. ([#78](https://github.com/crystal-lang/crystal-sqlite3/pull/78)) + +This release requires Crystal 1.0.0 or later. + ## v0.18.0 (2021-01-26) * Add `REGEXP` support powered by Crystal's std-lib Regex. ([#62](https://github.com/crystal-lang/crystal-sqlite3/pull/62), thanks @yujiri8) diff --git a/shard.yml b/shard.yml index f6cf1de..82ccb5c 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: sqlite3 -version: 0.18.0 +version: 0.19.0 dependencies: db: diff --git a/src/sqlite3/version.cr b/src/sqlite3/version.cr index 8de7608..a72f1d2 100644 --- a/src/sqlite3/version.cr +++ b/src/sqlite3/version.cr @@ -1,3 +1,3 @@ module SQLite3 - VERSION = "0.18.0" + VERSION = "0.19.0" end