diff --git a/Makefile b/Makefile index 2539801..ff553a0 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # pgloader build tool APP_NAME = pgloader -VERSION = 3.3.1 +VERSION = 3.3.2 # use either sbcl or ccl CL = sbcl diff --git a/debian/changelog b/debian/changelog index adde77a..885ef42 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +pgloader (3.3.2+dfsg-1) unstable; urgency=medium + + * Fixes github issue 453 (Closes: #843555) + * Maintenance release. + + -- Dimitri Fontaine Sat, 03 Dec 2016 19:36:56 +0300 + pgloader (3.3.1+dfsg-2) unstable; urgency=medium * Add tzdata to build-depends (Closes: #839468) diff --git a/src/main.lisp b/src/main.lisp index 306adb2..229a479 100644 --- a/src/main.lisp +++ b/src/main.lisp @@ -99,7 +99,7 @@ (condition (e) ;; any error here is a panic (if debug - (print-backtrace e debug stream) + (format stream "PANIC: ~a~%" (print-backtrace e debug)) (format stream "PANIC: ~a.~%" e)) (uiop:quit)))) diff --git a/src/params.lisp b/src/params.lisp index aca13a5..a49fc91 100644 --- a/src/params.lisp +++ b/src/params.lisp @@ -35,11 +35,11 @@ (in-package :pgloader.params) -(defparameter *release* nil +(defparameter *release* t "non-nil when this build is a release build.") (defparameter *major-version* "3.3") -(defparameter *minor-version* "1") +(defparameter *minor-version* "2") (defun git-hash () "Return the current abbreviated git hash of the development tree."