From fec606ccc8a291526d1e3137099b6acf0f6f84fe Mon Sep 17 00:00:00 2001 From: Matthew Johnston Date: Mon, 27 May 2024 09:41:05 -0500 Subject: [PATCH] Bump to v0.23.0 --- CHANGELOG.md | 4 ++++ README.md | 4 ++-- mix.exs | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e0854c5..e202971 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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`. diff --git a/README.md b/README.md index 482d8aa..a438869 100644 --- a/README.md +++ b/README.md @@ -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 ``` diff --git a/mix.exs b/mix.exs index 0ab2f03..999a2a3 100644 --- a/mix.exs +++ b/mix.exs @@ -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