prepare for 2.3.3~dev3 release, some testers need that

This commit is contained in:
Dimitri Fontaine 2010-11-09 14:33:00 +01:00
parent d81e23210e
commit 1711ef97ff
4 changed files with 8 additions and 3 deletions

View File

@ -20,7 +20,8 @@ examples = examples
libs = $(wildcard pgloader/*.py)
refm = $(wildcard reformat/*.py)
DEBDIR = /tmp/pgloader
TMPDIR?= /tmp
DEBDIR = $(TMPDIR)/pgloader
EXPORT = $(DEBDIR)/export/pgloader-$(VERSION)
ORIG = $(DEBDIR)/export/pgloader_$(VERSION).orig.tar.gz
ARCHIVE= $(DEBDIR)/export/pgloader-$(VERSION).tar.gz

6
debian/changelog vendored
View File

@ -1,4 +1,4 @@
pgloader (2.3.3~dev2-1) unstable; urgency=low
pgloader (2.3.3~dev3-1) unstable; urgency=low
* Implement -f --field-sep to overwrite the default from command line
* Add support for filename arguments, which use defaults
@ -10,6 +10,10 @@ pgloader (2.3.3~dev2-1) unstable; urgency=low
* Implement an option to set csv field size limit
* Implement --load-from-stdin
* Implement --boundaries
* use gettempdir() rather than hard-coded "/tmp"
* Handle C-c the default system's way
* Fix pgloader thread error management
* Fix exit status to be non-zero in case of known errors
-- Dimitri Fontaine <dim@tapoueh.org> Sun, 4 Apr 2010 19:34:39 +0200

Binary file not shown.

View File

@ -5,7 +5,7 @@
from tempfile import gettempdir
import os
PGLOADER_VERSION = '2.3.3~dev2'
PGLOADER_VERSION = '2.3.3~dev3'
PSYCOPG_VERSION = None