Skip to content

Commit 4cc1466

Browse files
committed
Bump version to 0.5.4
1 parent 1275a77 commit 4cc1466

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ in Hexdocs.
1616

1717
```elixir
1818
defp deps do
19-
{:ecto_sqlite3, "~> 0.5.3"}
19+
{:ecto_sqlite3, "~> 0.5.4"}
2020
end
2121
```
2222

mix.exs

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
defmodule EctoSQLite3.MixProject do
22
use Mix.Project
33

4+
@version "0.5.4"
5+
46
def project do
57
[
68
app: :ecto_sqlite3,
7-
version: "0.5.3",
9+
version: @version,
810
elixir: "~> 1.8",
911
start_permanent: Mix.env() == :prod,
1012
source_url: "https://github.com/elixir-sqlite/ecto_sqlite3",
@@ -48,7 +50,7 @@ defmodule EctoSQLite3.MixProject do
4850
end
4951

5052
defp description do
51-
"A SQLite3 Ecto3 adapter."
53+
"An SQLite3 Ecto3 adapter."
5254
end
5355

5456
defp package do
@@ -71,7 +73,9 @@ defmodule EctoSQLite3.MixProject do
7173

7274
defp docs do
7375
[
74-
main: "Ecto.Adapters.SQLite3"
76+
main: "Ecto.Adapters.SQLite3",
77+
source_ref: "v#{@version}",
78+
source_url: "https://github.com/elixir-sqlite/ecto_sqlite3"
7579
]
7680
end
7781

0 commit comments

Comments
 (0)