mirror of
https://gitea.invidious.io/iv-org/shard-crystal-sqlite3.git
synced 2024-08-15 00:53:26 +00:00
Release 0.18.0 (#67)
This commit is contained in:
parent
55b8399d7e
commit
367c11031d
3 changed files with 7 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
## 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)
|
||||||
|
|
||||||
## v0.17.0 (2020-09-30)
|
## v0.17.0 (2020-09-30)
|
||||||
|
|
||||||
* Update to crystal-db ~> 0.10.0. ([#58](https://github.com/crystal-lang/crystal-sqlite3/pull/58))
|
* Update to crystal-db ~> 0.10.0. ([#58](https://github.com/crystal-lang/crystal-sqlite3/pull/58))
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
name: sqlite3
|
name: sqlite3
|
||||||
version: 0.17.0
|
version: 0.18.0
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
db:
|
db:
|
||||||
|
@ -10,6 +10,6 @@ authors:
|
||||||
- Ary Borenszweig <aborenszweig@manas.tech>
|
- Ary Borenszweig <aborenszweig@manas.tech>
|
||||||
- Brian J. Cardiff <bcardiff@manas.tech>
|
- Brian J. Cardiff <bcardiff@manas.tech>
|
||||||
|
|
||||||
crystal: 0.35.0
|
crystal: ">= 0.35.0, < 2.0.0"
|
||||||
|
|
||||||
license: MIT
|
license: MIT
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
module SQLite3
|
module SQLite3
|
||||||
VERSION = "0.17.0"
|
VERSION = "0.18.0"
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue