File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ in Hexdocs.
1616
1717``` elixir
1818defp deps do
19- {:ecto_sqlite3 , " ~> 0.5.3 " }
19+ {:ecto_sqlite3 , " ~> 0.5.4 " }
2020end
2121```
2222
Original file line number Diff line number Diff line change 11defmodule 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
You can’t perform that action at this time.
0 commit comments