Skip to content

Commit

Permalink
v0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
narrowtux committed Jun 17, 2021
1 parent f1ec072 commit 44ef594
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Add ex_audit to your list of dependencies:
```elixir
def deps do
[
{:ex_audit, "~> 0.7"}
{:ex_audit, "~> 0.9"}
]
end
```
Expand Down
5 changes: 0 additions & 5 deletions lib/repo/repo.ex
Original file line number Diff line number Diff line change
Expand Up @@ -203,11 +203,6 @@ defmodule ExAudit.Repo do

defoverridable(child_spec: 1)

def checked_out? do
{adapter, meta} = Ecto.Repo.Registry.lookup(get_dynamic_repo())
adapter.checked_out?(meta)
end

# additional functions

def history(struct, opts \\ []) do
Expand Down
6 changes: 3 additions & 3 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ defmodule ExAudit.Mixfile do
[
description: "Ecto auditing library that transparently tracks changes and can revert them",
app: :ex_audit,
version: "0.8.0",
version: "0.9.0",
elixir: "~> 1.11",
start_permanent: Mix.env() == :prod,
deps: deps(),
Expand Down Expand Up @@ -49,8 +49,8 @@ defmodule ExAudit.Mixfile do
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ecto, "~> 3.6"},
{:ecto_sql, "~> 3.6"},
{:ecto, ">= 3.6"},
{:ecto_sql, ">= 3.6"},
{:postgrex, "~> 0.15", only: :test},
{:excoveralls, "~> 0.7", only: :test},
{:ex_doc, ">= 0.0.0", runtime: false, only: :dev},
Expand Down

0 comments on commit 44ef594

Please sign in to comment.