diff --git a/debian/changelog b/debian/changelog index a64b4b5..ac05d6d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ -pgloader (2.3.2~dev1-1) unstable; urgency=low +pgloader (2.3.2-1) unstable; urgency=low - * Use psycopg cursor.copy_expert() when avaiable (> 2.0.6) + * Implement --from support in all readers (Closes: #531034) + * Use psycopg cursor.copy_expert() when available (> 2.0.6) * FIX fixedreader: it now know about -C * FIX Round Robin Reader with respect to offsets in readlines() * support python 2.3 if not using RRR (not importing collections.deque) @@ -10,7 +11,7 @@ pgloader (2.3.2~dev1-1) unstable; urgency=low * Do not sort() section list when it's been given on command line * Catch InterfaceError when trying to close connection - -- Dimitri Fontaine Wed, 17 Sep 2008 17:53:53 +0200 + -- Dimitri Fontaine Mon, 29 Jun 2009 09:39:33 +0200 pgloader (2.3.1-2) unstable; urgency=low diff --git a/debian/control b/debian/control index b9f745e..2536338 100644 --- a/debian/control +++ b/debian/control @@ -1,9 +1,9 @@ Source: pgloader -Section: misc +Section: database Priority: extra Maintainer: Dimitri Fontaine Build-Depends: debhelper (>= 5), docbook-to-man (>= 2.0.0), python-support (>= 0.3), xmlto, asciidoc (>= 0.8.2) -Standards-Version: 3.8.0 +Standards-Version: 3.8.2 Homepage: http://pgloader.projects.postgresql.org Package: pgloader diff --git a/pgloader/options.py b/pgloader/options.py index 3e8202e..62193a4 100644 --- a/pgloader/options.py +++ b/pgloader/options.py @@ -2,7 +2,7 @@ # # Some common options, for each module to get them -PGLOADER_VERSION = '2.3.2~dev1' +PGLOADER_VERSION = '2.3.2' PSYCOPG_VERSION = None