Skip to content

Commit

Permalink
Bump to v0.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
warmwaffles committed May 27, 2024
1 parent fc2ba67 commit fec606c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v0.23.0

- changed: update sqlite to `3.46.0`.

## v0.22.0

- changed: update sqlite to `3.45.3`.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ Package: https://hex.pm/packages/exqlite
get it from the database. This is more reliable than storing the offset as
`+03:00` as it does not respect daylight savings time.
* When storing `BLOB` values, you have to use `{:blob, the_binary}`, otherwise
it will be interpreted as a string.
it will be interpreted as a string.

## Installation

```elixir
defp deps do
[
{:exqlite, "~> 0.21"}
{:exqlite, "~> 0.23"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Exqlite.MixProject do
use Mix.Project

@version "0.22.0"
@version "0.23.0"
@sqlite_version "3.46.0"

def project do
Expand Down

0 comments on commit fec606c

Please sign in to comment.