mirror of
https://gitea.invidious.io/iv-org/shard-crystal-db.git
synced 2024-08-15 00:53:32 +00:00
Release 0.12.0 (#183)
* Release 0.12.0 * Update CHANGELOG.md Co-authored-by: Johannes Müller <straightshoota@gmail.com> --------- Co-authored-by: Johannes Müller <straightshoota@gmail.com>
This commit is contained in:
parent
f13846b133
commit
851091e81c
3 changed files with 14 additions and 3 deletions
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -1,3 +1,14 @@
|
|||
## v0.12.0 (2023-06-23)
|
||||
|
||||
- **(breaking-change)** Refactor how drivers create connections. Allow creating `Database` without `URI`s. ([#181](https://github.com/crystal-lang/crystal-db/pull/181), thanks @bcardiff)
|
||||
- Close a transaction when `return`ing from within its block. ([#167](https://github.com/crystal-lang/crystal-db/pull/167), thanks @jgaskins)
|
||||
- Fix race conditions in multi-thread mode. ([#178](https://github.com/crystal-lang/crystal-db/pull/178), thanks @bcardiff)
|
||||
- Allow the use of `Enum`s when reading a `ResultSet`. ([#168](https://github.com/crystal-lang/crystal-db/pull/168), thanks @jgaskins)
|
||||
- Fix specs for Crystal 1.4 and 1.5. ([#163](https://github.com/crystal-lang/crystal-db/pull/163), [#173](https://github.com/crystal-lang/crystal-db/pull/173), thanks @straight-shoota)
|
||||
- Update README. ([#172](https://github.com/crystal-lang/crystal-db/pull/172), [#180](https://github.com/crystal-lang/crystal-db/pull/180), thanks @amauryt, @jgaskins)
|
||||
|
||||
Note: The breaking-change introduced in this release does not affect consumers of the library, only driver implementors.
|
||||
|
||||
## v0.11.0 (2022-01-27)
|
||||
|
||||
* Fix `Connection#transaction` method to return the block value as the result. ([#159](https://github.com/crystal-lang/crystal-db/pull/159), [#160](https://github.com/crystal-lang/crystal-db/pull/160), thanks @bcardiff)
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
name: db
|
||||
version: 0.11.0
|
||||
version: 0.12.0
|
||||
|
||||
authors:
|
||||
- Brian J. Cardiff <bcardiff@manas.tech>
|
||||
- Brian J. Cardiff <bcardiff@gmail.com>
|
||||
|
||||
crystal: ">= 1.0.0, < 2.0.0"
|
||||
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
module DB
|
||||
VERSION = "0.11.0"
|
||||
VERSION = "0.12.0"
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue