Skip to content

Commit 0214bd6

Browse files
committed
preparing for appvoyer CI
1 parent 1f028aa commit 0214bd6

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
MSSQL / TDS Database driver for Elixir.
44

5+
[![Build status](https://ci.appveyor.com/api/projects/status/aibnqbukppa3kcpt?svg=true)](https://ci.appveyor.com/project/mjaric/tds)
6+
57
This is an alpha version that currently supports Ecto 2.0. It has implemented the [db_connection](https://github.com/elixir-ecto/db_connection) behaviour, and added support for transactions and prepared queries.
68
Please check out the issues for a more complete overview. This branch should not yet be considered stable or used in production.
79

@@ -11,7 +13,7 @@ Add Tds as a dependency in your `mix.exs` file.
1113

1214
```elixir
1315
def deps do
14-
[{:tds, "~> 1.0.4"} ]
16+
[{:tds, "~> 1.0"} ]
1517
end
1618
```
1719

config/test.exs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ config :logger, level: :info
44

55
config :tds,
66
opts: [
7-
hostname: "127.0.0.1",
8-
username: "sa",
9-
password: "some!Password",
7+
hostname: System.get_env("SQL_HOSTNAME") || "127.0.0.1",
8+
username: System.get_env("SQL_USERNAME") || "sa",
9+
password: System.get_env("SQL_PASSWORD") || "some!Password",
1010
database: "test"
1111
]
1212

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ defmodule Tds.Mixfile do
33

44
def project do
55
[ app: :tds,
6-
version: "1.0.7",
6+
version: "1.0.8",
77
elixir: "~> 1.0",
88
deps: deps(),
99
test_coverage: [tool: ExCoveralls],

0 commit comments

Comments
 (0)