Skip to content

Commit

Permalink
update app version to 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wg committed Jan 25, 2009
1 parent 240552b commit 062af07
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion Makefile
@@ -1,5 +1,5 @@
NAME := epgsql
VERSION := 0.2
VERSION := 1.0

ERL := erl
ERLC := erlc
Expand Down Expand Up @@ -30,6 +30,7 @@ clean:
@rm -rf $(NAME)-$(VERSION) $(NAME)-*.tar.gz

test: $(TESTS:test_src/%.erl=test_ebin/%.beam) $(BEAMS)
dialyzer --src -c src
$(ERL) -pa ebin/ -pa test_ebin/ -noshell -s pgsql_tests run_tests -s init stop

# ------------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions src/epgsql.app
@@ -1,7 +1,7 @@
{application, epgsql,
[{description, "PostgreSQL Client"},
{vsn, "0.2"},
{modules, [pgsql, pgsql_binary, pgsql_connection, pgsql_types]},
{vsn, "1.0"},
{modules, [pgsql, pgsql_binary, pgsql_connection, pgsql_datetime, pgsql_types]},
{registered, []},
{applications, [kernel, stdlib]},
{included_applications, []}]}.

0 comments on commit 062af07

Please sign in to comment.