Prepare release 3.3.2.

This commit is contained in:
Dimitri Fontaine 2016-12-03 17:37:54 +01:00
parent db9fa2f001
commit ac202dc70e
4 changed files with 11 additions and 4 deletions

View File

@ -1,6 +1,6 @@
# pgloader build tool # pgloader build tool
APP_NAME = pgloader APP_NAME = pgloader
VERSION = 3.3.1 VERSION = 3.3.2
# use either sbcl or ccl # use either sbcl or ccl
CL = sbcl CL = sbcl

7
debian/changelog vendored
View File

@ -1,3 +1,10 @@
pgloader (3.3.2+dfsg-1) unstable; urgency=medium
* Fixes github issue 453 (Closes: #843555)
* Maintenance release.
-- Dimitri Fontaine <dim@tapoueh.org> Sat, 03 Dec 2016 19:36:56 +0300
pgloader (3.3.1+dfsg-2) unstable; urgency=medium pgloader (3.3.1+dfsg-2) unstable; urgency=medium
* Add tzdata to build-depends (Closes: #839468) * Add tzdata to build-depends (Closes: #839468)

View File

@ -99,7 +99,7 @@
(condition (e) (condition (e)
;; any error here is a panic ;; any error here is a panic
(if debug (if debug
(print-backtrace e debug stream) (format stream "PANIC: ~a~%" (print-backtrace e debug))
(format stream "PANIC: ~a.~%" e)) (format stream "PANIC: ~a.~%" e))
(uiop:quit)))) (uiop:quit))))

View File

@ -35,11 +35,11 @@
(in-package :pgloader.params) (in-package :pgloader.params)
(defparameter *release* nil (defparameter *release* t
"non-nil when this build is a release build.") "non-nil when this build is a release build.")
(defparameter *major-version* "3.3") (defparameter *major-version* "3.3")
(defparameter *minor-version* "1") (defparameter *minor-version* "2")
(defun git-hash () (defun git-hash ()
"Return the current abbreviated git hash of the development tree." "Return the current abbreviated git hash of the development tree."