diff --git a/Makefile b/Makefile index ede62f6..d673dc6 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # pgloader build tool APP_NAME = pgloader -VERSION = 3.1.1 +VERSION = 3.2.0 # use either sbcl or ccl CL = sbcl diff --git a/debian/changelog b/debian/changelog index f424b1d..19e55ad 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +pgloader (3.2.0+dfsg-1) unstable; urgency=medium + + * Implement COPY files support + * Implement MS SQL source database support + * Lots of bug fixes + * Full command line operations support + * Misc improvements, cleanup, refactoring + + -- Dimitri Fontaine Thu, 15 Jan 2015 19:51:02 +0300 + pgloader (3.1.1+dfsg-1) unstable; urgency=medium * Fix --root-dir option when target directory doesn't exists (Closes:#767288) diff --git a/debian/control b/debian/control index 6c7ae35..f20f216 100644 --- a/debian/control +++ b/debian/control @@ -3,15 +3,15 @@ Section: database Priority: extra Maintainer: Dimitri Fontaine Uploaders: Christoph Berg -Build-Depends: debhelper (>= 8.0.0), sbcl (>= 1.1.13), ruby-ronn, buildapp (>= 1.5), cl-asdf (>= 3.0.3), cl-log, cl-postmodern, cl-simple-date, cl-qmynd, cl-split-sequence, cl-unicode, cl-interpol, cl-csv, cl-fad, cl-lparallel, cl-esrap, cl-alexandria, cl-drakma, cl-flexi-streams, cl-usocket, cl-local-time, cl-command-line-arguments, cl-abnf, cl-db3, cl-py-configparser, cl-sqlite, cl-trivial-backtrace, cl-markdown, cl-md5, cl-asdf-finalizers, cl-asdf-system-connections, cl-cffi (>= 1:0.12.0), cl-ixf, gawk, cl-bordeaux-threads (>= 0.8.3), cl-metabang-bind, cl-mssql -Standards-Version: 3.9.5 +Build-Depends: debhelper (>= 8.0.0), sbcl (>= 1.1.13), ruby-ronn, buildapp (>= 1.5), cl-asdf (>= 3.0.3), cl-log, cl-postmodern, cl-simple-date, cl-qmynd, cl-split-sequence, cl-unicode, cl-interpol, cl-csv, cl-fad, cl-lparallel, cl-esrap, cl-alexandria, cl-drakma, cl-flexi-streams, cl-usocket, cl-local-time, cl-command-line-arguments, cl-abnf, cl-db3, cl-py-configparser, cl-sqlite, cl-trivial-backtrace, cl-markdown, cl-md5, cl-asdf-finalizers, cl-asdf-system-connections, cl-cffi (>= 1:0.12.0), cl-ixf, gawk, cl-bordeaux-threads (>= 0.8.3), cl-metabang-bind, cl-mssql, cl-uuid, cl-trivial-utf-8 +Standards-Version: 3.9.6 Homepage: https://github.com/dimitri/pgloader Vcs-Git: https://github.com/dimitri/pgloader.git Vcs-Browser: https://github.com/dimitri/pgloader Package: pgloader Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, freetds +Depends: ${shlibs:Depends}, ${misc:Depends}, freetds-dev Description: extract, transform and load data into PostgreSQL pgloader imports data from different kind of sources and COPY it into PostgreSQL. @@ -28,7 +28,7 @@ Description: extract, transform and load data into PostgreSQL Package: cl-pgloader Architecture: all -Depends: ${misc:Depends}, cl-asdf (>= 3.0.3), cl-log, cl-postmodern, cl-simple-date, cl-qmynd, cl-split-sequence, cl-unicode, cl-interpol, cl-csv, cl-fad, cl-lparallel, cl-esrap, cl-alexandria, cl-drakma, cl-flexi-streams, cl-usocket, cl-local-time, cl-command-line-arguments, cl-abnf, cl-db3, cl-py-configparser, cl-sqlite, cl-trivial-backtrace, cl-markdown, cl-md5, cl-asdf-finalizers, cl-asdf-system-connections, cl-cffi (>= 1:0.12.0), cl-bordeaux-threads (>= 0.8.3), cl-metabang-bind +Depends: ${misc:Depends}, cl-asdf (>= 3.0.3), cl-log, cl-postmodern, cl-simple-date, cl-qmynd, cl-split-sequence, cl-unicode, cl-interpol, cl-csv, cl-fad, cl-lparallel, cl-esrap, cl-alexandria, cl-drakma, cl-flexi-streams, cl-usocket, cl-local-time, cl-command-line-arguments, cl-abnf, cl-db3, cl-py-configparser, cl-sqlite, cl-trivial-backtrace, cl-markdown, cl-md5, cl-asdf-finalizers, cl-asdf-system-connections, cl-cffi (>= 1:0.12.0), cl-bordeaux-threads (>= 0.8.3), cl-metabang-bind, cl-uuid, cl-trivial-utf-8 Description: extract, transform and load data into PostgreSQL pgloader imports data from different kind of sources and COPY it into PostgreSQL. diff --git a/pgloader.spec b/pgloader.spec index 7cd8815..2385c7c 100644 --- a/pgloader.spec +++ b/pgloader.spec @@ -1,6 +1,6 @@ Summary: extract, transform and load data into PostgreSQL Name: pgloader -Version: 3.1.1 +Version: 3.2.0 Release: 22%{?dist} License: The PostgreSQL Licence Group: System Environment/Base @@ -40,6 +40,9 @@ echo '-b /usr/bin/pgloader' > $RPM_BUILD_ROOT/etc/prelink.conf.d/%{name}.conf /etc/prelink.conf.d/%{name}.conf %changelog +* Thu Jan 15 2015 Dimitri Fontaine - 3.2.0-22 +- Release 3.2.0 + * Wed Nov 5 2014 Dimitri Fontaine - 3.1.1-22 - Release 3.1.1 diff --git a/src/params.lisp b/src/params.lisp index d515aa9..e480264 100644 --- a/src/params.lisp +++ b/src/params.lisp @@ -26,11 +26,11 @@ (in-package :pgloader.params) -(defparameter *release* nil +(defparameter *release* t "non-nil when this build is a release build.") -(defparameter *major-version* "3.1") -(defparameter *minor-version* "3") +(defparameter *major-version* "3.2") +(defparameter *minor-version* "0") (defun git-hash () "Return the current abbreviated git hash of the development tree."