Skip to content

Commit

Permalink
Bump version to 26.0.2
Browse files Browse the repository at this point in the history
Fixes #45
  • Loading branch information
pguyot committed Mar 23, 2018
1 parent df9e384 commit 890df88
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/pgsql.app.src
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
[
{description, "pgsql driver"},
{id, "pgsql"},
{vsn, "26.0.1"},
{vsn, "26.0.2"},
{modules, [
pgsql_app,
pgsql_connection,
Expand Down
19 changes: 16 additions & 3 deletions src/pgsql.appup
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
{"26.0.1",
{"26.0.2",
[
{"26.0.1", [
{load_module, pgsql_connection, soft_purge, soft_purge, []},
{load_module, pgsql_protocol, soft_purge, soft_purge, []}
]},
{"26.0.0", [
{load_module, pgsql_connection, soft_purge, soft_purge, []},
{load_module, pgsql_protocol, soft_purge, soft_purge, []}
]},
{"26", [
{load_module, pgsql_connection, soft_purge, soft_purge, []},
{load_module, pgsql_protocol, soft_purge, soft_purge, []}
]},
{"25", [
{load_module, pgsql_connection, soft_purge, soft_purge, []}
{load_module, pgsql_connection, soft_purge, soft_purge, []},
{load_module, pgsql_protocol, soft_purge, soft_purge, []}
]},
{"24", [
Expand Down Expand Up @@ -40,17 +46,24 @@
]}
],
[
{"26.0.1", [
{load_module, pgsql_connection, soft_purge, soft_purge, []},
{load_module, pgsql_protocol, soft_purge, soft_purge, []}
]},
{"26.0.0", [
{load_module, pgsql_connection, soft_purge, soft_purge, []},
{load_module, pgsql_protocol, soft_purge, soft_purge, []}
]},
{"26", [
{load_module, pgsql_connection, soft_purge, soft_purge, []},
{load_module, pgsql_protocol, soft_purge, soft_purge, []}
]},
{"25", [
{load_module, pgsql_connection, soft_purge, soft_purge, []}
{load_module, pgsql_connection, soft_purge, soft_purge, []},
{load_module, pgsql_protocol, soft_purge, soft_purge, []}
]},
{"24", [
{load_module, pgsql_connection, soft_purge, soft_purge, []},
{load_module, pgsql_protocol, soft_purge, soft_purge, []}
]},
{"23", [
Expand Down

0 comments on commit 890df88

Please sign in to comment.