Skip to content

Commit fec606c

Browse files
committed
Bump to v0.23.0
1 parent fc2ba67 commit fec606c

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## v0.23.0
4+
5+
- changed: update sqlite to `3.46.0`.
6+
37
## v0.22.0
48

59
- changed: update sqlite to `3.45.3`.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ Package: https://hex.pm/packages/exqlite
2828
get it from the database. This is more reliable than storing the offset as
2929
`+03:00` as it does not respect daylight savings time.
3030
* When storing `BLOB` values, you have to use `{:blob, the_binary}`, otherwise
31-
it will be interpreted as a string.
31+
it will be interpreted as a string.
3232

3333
## Installation
3434

3535
```elixir
3636
defp deps do
3737
[
38-
{:exqlite, "~> 0.21"}
38+
{:exqlite, "~> 0.23"}
3939
]
4040
end
4141
```

mix.exs

+1-1
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.22.0"
4+
@version "0.23.0"
55
@sqlite_version "3.46.0"
66

77
def project do

0 commit comments

Comments
 (0)