Skip to content

Commit a8dba83

Browse files
committed
Bump to v0.9.0
1 parent 0400f5e commit a8dba83

3 files changed

Lines changed: 9 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
## [Unreleased](unreleased)
44

55

6+
## [0.9.0] - 2022-01-21
7+
### Added
8+
- Allow setting `:key` option `PRAGMA` before all other pragmas to allow for use of encrypted sqlite databases. [#187](https://github.com/elixir-sqlite/exqlite/pull/187)
9+
10+
611
## [0.8.7] - 2022-01-21
712
### Added
813
- Ability to compile exqlite using the system sqlite3 installation as opposed to building from source. [#186](https://github.com/elixir-sqlite/exqlite/pull/186)
@@ -168,7 +173,8 @@
168173

169174

170175
[ecto_sqlite3]: <https://github.com/elixir-sqlite/ecto_sqlite3>
171-
[unreleased]: https://github.com/elixir-sqlite/exqlite/compare/v0.8.7...HEAD
176+
[unreleased]: https://github.com/elixir-sqlite/exqlite/compare/v0.9.0...HEAD
177+
[0.9.0]: https://github.com/elixir-sqlite/exqlite/compare/v0.8.7...v0.9.0
172178
[0.8.7]: https://github.com/elixir-sqlite/exqlite/compare/v0.8.6...v0.8.7
173179
[0.8.6]: https://github.com/elixir-sqlite/exqlite/compare/v0.8.5...v0.8.6
174180
[0.8.5]: https://github.com/elixir-sqlite/exqlite/compare/v0.8.4...v0.8.5

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Package: https://hex.pm/packages/exqlite
3333

3434
```elixir
3535
defp deps do
36-
{:exqlite, "~> 0.8.7"}
36+
{:exqlite, "~> 0.9.0"}
3737
end
3838
```
3939

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.8.7"
4+
@version "0.9.0"
55

66
def project do
77
[

0 commit comments

Comments
 (0)