Release 0.20.0

This commit is contained in:
Brian J. Cardiff 2023-06-23 15:40:47 -03:00
parent c08fc2befc
commit 2482e52c1e
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
## v0.20.0 (2023-06-23)
* Update to crystal-db ~> 0.12.0. ([#91](https://github.com/crystal-lang/crystal-sqlite3/pull/91))
* Fix result set & connection release lifecycle. ([#90](https://github.com/crystal-lang/crystal-sqlite3/pull/90))
* Automatically set PRAGMAs using connection query params. ([#85](https://github.com/crystal-lang/crystal-sqlite3/pull/85), thanks @luislavena)
## v0.19.0 (2022-01-28)
* Update to crystal-db ~> 0.11.0. ([#77](https://github.com/crystal-lang/crystal-sqlite3/pull/77))

View File

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

View File

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