Skip to content

Commit a24d029

Browse files
committed
Bump to v0.12.0
1 parent 57019dd commit a24d029

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## v0.12.0 - 2022-12-07
4+
- changed: Use `multi_step` for `Repo.stream` calls. [#223](https://github.com/elixir-sqlite/exqlite/pull/223)
5+
- added: Ability to use URI for a database path. See [sqlite docs](https://sqlite.org/uri.html). Example: `file:/tmp/database.db?mode=ro`. [#225](https://github.com/elixir-sqlite/exqlite/pull/225)
6+
37
## v0.11.9 - 2022-12-01
48
- fixed: `step/2` typespec was specified incorrectly. [#224](https://github.com/elixir-sqlite/exqlite/pull/224)
59

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Package: https://hex.pm/packages/exqlite
3434
```elixir
3535
defp deps do
3636
[
37-
{:exqlite, "~> 0.11.9"}
37+
{:exqlite, "~> 0.12.0"}
3838
]
3939
end
4040
```

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Exqlite.MixProject do
22
use Mix.Project
33

4-
@version "0.11.9"
4+
@version "0.12.0"
55
@sqlite_version "3.40.0"
66

77
def project do

0 commit comments

Comments
 (0)