Skip to content

Commit 0b87a5d

Browse files
committed
Bump to v0.10.0
1 parent d079739 commit 0b87a5d

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Changelog
22

3-
## [Unreleased](https://github.com/elixir-sqlite/exqlite/compare/v0.9.3...HEAD)
3+
## [Unreleased](https://github.com/elixir-sqlite/exqlite/compare/v0.10.0...HEAD)
4+
5+
6+
## [0.10.0] - 2022-02-24
7+
### Added
8+
- Custom memory allocator for sqlite to leverage erlang's `enif_alloc` functionality. This allows the memory usage to be tracked with the erlang vm usage stats. [#193](https://github.com/elixir-sqlite/exqlite/pull/193)
49

510

611
## [0.9.3] - 2022-02-02
@@ -193,6 +198,7 @@
193198

194199

195200
[ecto_sqlite3]: <https://github.com/elixir-sqlite/ecto_sqlite3>
201+
[0.10.0]: https://github.com/elixir-sqlite/exqlite/compare/v0.9.3...v0.10.0
196202
[0.9.3]: https://github.com/elixir-sqlite/exqlite/compare/v0.9.2...v0.9.3
197203
[0.9.2]: https://github.com/elixir-sqlite/exqlite/compare/v0.9.1...v0.9.2
198204
[0.9.1]: https://github.com/elixir-sqlite/exqlite/compare/v0.9.0...v0.9.1

README.md

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

3434
```elixir
3535
defp deps do
36-
{:exqlite, "~> 0.9.3"}
36+
[
37+
{:exqlite, "~> 0.10.0"}
38+
]
3739
end
3840
```
3941

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.9.3"
4+
@version "0.10.0"
55

66
def project do
77
[

0 commit comments

Comments
 (0)