Skip to content

Commit

Permalink
Bump to v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
warmwaffles committed Feb 24, 2022
1 parent d079739 commit 0b87a5d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Changelog

## [Unreleased](https://github.com/elixir-sqlite/exqlite/compare/v0.9.3...HEAD)
## [Unreleased](https://github.com/elixir-sqlite/exqlite/compare/v0.10.0...HEAD)


## [0.10.0] - 2022-02-24
### Added
- 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)


## [0.9.3] - 2022-02-02
Expand Down Expand Up @@ -193,6 +198,7 @@


[ecto_sqlite3]: <https://github.com/elixir-sqlite/ecto_sqlite3>
[0.10.0]: https://github.com/elixir-sqlite/exqlite/compare/v0.9.3...v0.10.0
[0.9.3]: https://github.com/elixir-sqlite/exqlite/compare/v0.9.2...v0.9.3
[0.9.2]: https://github.com/elixir-sqlite/exqlite/compare/v0.9.1...v0.9.2
[0.9.1]: https://github.com/elixir-sqlite/exqlite/compare/v0.9.0...v0.9.1
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ Package: https://hex.pm/packages/exqlite

```elixir
defp deps do
{:exqlite, "~> 0.9.3"}
[
{:exqlite, "~> 0.10.0"}
]
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.9.3"
@version "0.10.0"

def project do
[
Expand Down

0 comments on commit 0b87a5d

Please sign in to comment.