We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09bcd7f commit 503c9c8Copy full SHA for 503c9c8
CHANGELOG.md
@@ -2,6 +2,11 @@
2
3
## [Unreleased](https://github.com/elixir-sqlite/exqlite/compare/v0.11.1...HEAD)
4
5
+## [0.11.2] - 2022-05-13
6
+### Changed
7
+- Fix incorrect ordering due to `Enum.reverse/1`. [#205](https://github.com/elixir-sqlite/exqlite/pull/205)
8
+
9
10
## [0.11.1] - 2022-05-13
11
### Changed
12
- Updated sqlite3 to 3.38.5
README.md
@@ -34,7 +34,7 @@ Package: https://hex.pm/packages/exqlite
34
```elixir
35
defp deps do
36
[
37
- {:exqlite, "~> 0.11.1"}
+ {:exqlite, "~> 0.11.2"}
38
]
39
end
40
```
mix.exs
@@ -1,7 +1,7 @@
1
defmodule Exqlite.MixProject do
use Mix.Project
- @version "0.11.1"
+ @version "0.11.2"
def project do
0 commit comments