@@ -4,21 +4,23 @@ defmodule Sqlitex.Mixfile do
44 def project do
55 [
66 app: :sqlitex ,
7- version: "1.4.3 " ,
7+ version: "1.5.0 " ,
88 elixir: "~> 1.4" ,
99 deps: deps ( ) ,
1010 package: package ( ) ,
11+ source_url: "https://github.com/Sqlite-Ecto/sqlitex" ,
1112 test_coverage: [ tool: ExCoveralls ] ,
1213 preferred_cli_env: [
13- coveralls: :test ,
14- "coveralls.circle": :test ,
15- "coveralls.detail": :test ,
16- "coveralls.post": :test ,
17- "coveralls.html": :test ] ,
14+ coveralls: :test ,
15+ "coveralls.circle": :test ,
16+ "coveralls.detail": :test ,
17+ "coveralls.post": :test ,
18+ "coveralls.html": :test
19+ ] ,
1820 description: """
1921 A thin Elixir wrapper around esqlite
2022 """ ,
21- dialyzer: [ plt_add_deps: :transitive ] ,
23+ dialyzer: [ plt_add_deps: :transitive ]
2224 ]
2325 end
2426
@@ -30,22 +32,24 @@ defmodule Sqlitex.Mixfile do
3032 # Type `mix help deps` for more examples and options
3133 defp deps do
3234 [
33- { :esqlite , "~> 0.2.4 " } ,
35+ { :esqlite , "~> 0.2.5 " } ,
3436 { :decimal , "~> 1.5" } ,
3537 { :credo , "~> 0.10" , only: :dev } ,
3638 { :dialyxir , "~> 1.0.0-rc.3" , only: :dev , runtime: false } ,
3739 { :excoveralls , "~> 0.10" , only: :test } ,
3840 { :ex_doc , "~> 0.19" , only: :docs , runtime: false } ,
3941 { :excheck , "~> 0.6" , only: :test } ,
40- { :triq , "~> 1.2" , only: :test } ,
42+ { :triq , "~> 1.2" , only: :test }
4143 ]
4244 end
4345
4446 defp package do
45- [ maintainers: [ "Michael Ries" , "Jason M Barnes" , "Graeme Coupar" , "Eric Scouten" , "Connor Rigby" ] ,
46- licenses: [ "MIT" ] ,
47- links: % {
48- github: "https://github.com/Sqlite-Ecto/sqlitex" ,
49- docs: "http://hexdocs.pm/sqlitex" } ]
47+ [
48+ licenses: [ "MIT" ] ,
49+ links: % {
50+ "GitHub" => "https://github.com/Sqlite-Ecto/sqlitex" ,
51+ "docs" => "http://hexdocs.pm/sqlitex"
52+ }
53+ ]
5054 end
5155end
0 commit comments