changed
CHANGELOG.md
|
@@ -1,3 1,7 @@
|
1
|
# v0.5.3
|
2
|
* Enhancements
|
3
|
* Loosen Elixir dependency
|
4
|
|
1
5
|
# v0.5.2
|
2
6
|
* Bug Fixes
|
3
7
|
* If server outputs warning result rows are missing.
|
changed
hex_metadata.config
|
@@ -1,8 1,7 @@
|
1
1
|
{<<"app">>,<<"tds">>}.
|
2
2
|
{<<"build_tools">>,[<<"mix">>]}.
|
3
|
- {<<"contributors">>,[<<"Justin Schneck">>]}.
|
4
3
|
{<<"description">>,<<"MSSQL / TDS Driver for Ecto.">>}.
|
5
|
- {<<"elixir">>,<<"~> 1.0.0">>}.
|
4
|
{<<"elixir">>,<<"~> 1.0">>}.
|
6
5
|
{<<"files">>,
|
7
6
|
[<<"lib/tds.ex">>,<<"lib/tds/binary_utils.ex">>,<<"lib/tds/connection.ex">>,
|
8
7
|
<<"lib/tds/date_time.ex">>,<<"lib/tds/error.ex">>,<<"lib/tds/messages.ex">>,
|
|
@@ -11,10 10,11 @@
|
11
10
|
<<"lib/tds/utils.ex">>,<<"mix.exs">>,<<"README.md">>,<<"CHANGELOG.md">>]}.
|
12
11
|
{<<"licenses">>,[<<"Apache 2.0">>]}.
|
13
12
|
{<<"links">>,[{<<"Github">>,<<"https://github.com/livehelpnow/tds">>}]}.
|
13
|
{<<"maintainers">>,[<<"Justin Schneck">>]}.
|
14
14
|
{<<"name">>,<<"tds">>}.
|
15
15
|
{<<"requirements">>,
|
16
16
|
[{<<"decimal">>,
|
17
17
|
[{<<"app">>,<<"decimal">>},
|
18
18
|
{<<"optional">>,false},
|
19
19
|
{<<"requirement">>,<<"~> 1.0">>}]}]}.
|
20
|
- {<<"version">>,<<"0.5.2">>}.
|
20
|
{<<"version">>,<<"0.5.3">>}.
|
changed
lib/tds/connection.ex
|
@@ -205,7 205,7 @@ defmodule Tds.Connection do
|
205
205
|
end)
|
206
206
|
case server do
|
207
207
|
nil ->
|
208
|
- error(%Tds.Error{message: "Instance #{opts.instance} not found"}, s)
|
208
|
error(%Tds.Error{message: "Instance #{opts[:instance]} not found"}, s)
|
209
209
|
serv ->
|
210
210
|
{port, _} = Integer.parse(serv[:tcp])
|
211
211
|
GenServer.reply(pid, :ok)
|
changed
mix.exs
|
@@ -3,8 3,8 @@ defmodule Tds.Mixfile do
|
3
3
|
|
4
4
|
def project do
|
5
5
|
[app: :tds,
|
6
|
- version: "0.5.2",
|
7
|
- elixir: "~> 1.0.0",
|
6
|
version: "0.5.3",
|
7
|
elixir: "~> 1.0",
|
8
8
|
deps: deps,
|
9
9
|
source_url: "https://github.com/livehelpnow/tds",
|
10
10
|
description: description,
|
|
@@ -41,7 41,7 @@ defmodule Tds.Mixfile do
|
41
41
|
end
|
42
42
|
|
43
43
|
defp package do
|
44
|
- [contributors: ["Justin Schneck"],
|
44
|
[maintainers: ["Justin Schneck"],
|
45
45
|
licenses: ["Apache 2.0"],
|
46
46
|
links: %{"Github" => "https://github.com/livehelpnow/tds"}]
|
47
47
|
end
|