Release 0.19.0 (#79)

This commit is contained in:
Brian J. Cardiff 2022-01-28 15:33:18 -03:00 committed by GitHub
parent a9baaec310
commit d15a8da05c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 2 deletions

View File

@ -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)

View File

@ -1,5 +1,5 @@
name: sqlite3
version: 0.18.0
version: 0.19.0
dependencies:
db:

View File

@ -1,3 +1,3 @@
module SQLite3
VERSION = "0.18.0"
VERSION = "0.19.0"
end