@@ -1,5 +1,5 @@
NAME := epgsql
-VERSION := 0.1
+VERSION := 0.2
ERL := erl
ERLC := erlc
@@ -1,8 +1,7 @@
{application, epgsql,
- [{description, "PostgreSQL Database Client"},
- {vsn, "0.1"},
+ [{description, "PostgreSQL Client"},
+ {vsn, "0.2"},
{modules, [pgsql, pgsql_binary, pgsql_connection, pgsql_types]},
{registered, []},
- {mod, {epgsql, []}},
- {applications, [kernel, stdlib, crypto, sasl},
+ {applications, [kernel, stdlib]},
{included_applications, []}]}.
@@ -198,8 +198,7 @@ initializing({$Z, <<Status:8>>}, State) ->
gen_fsm:reply(State#state.reply_to, {ok, self()}),
{next_state, ready, State#state{txstatus = Status}}.
-ready(Data, State) ->
- error_logger:info_msg("unexpected msg when ready: ~p~n", Data),
+ready(_Msg, State) ->
{next_state, ready, State}.
%% execute simple query