Skip to content

Commit ac202dc

Browse files
committed
Prepare release 3.3.2.
1 parent db9fa2f commit ac202dc

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# pgloader build tool
22
APP_NAME = pgloader
3-
VERSION = 3.3.1
3+
VERSION = 3.3.2
44

55
# use either sbcl or ccl
66
CL = sbcl

debian/changelog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
pgloader (3.3.2+dfsg-1) unstable; urgency=medium
2+
3+
* Fixes github issue 453 (Closes: #843555)
4+
* Maintenance release.
5+
6+
-- Dimitri Fontaine <dim@tapoueh.org> Sat, 03 Dec 2016 19:36:56 +0300
7+
18
pgloader (3.3.1+dfsg-2) unstable; urgency=medium
29

310
* Add tzdata to build-depends (Closes: #839468)

src/main.lisp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
(condition (e)
100100
;; any error here is a panic
101101
(if debug
102-
(print-backtrace e debug stream)
102+
(format stream "PANIC: ~a~%" (print-backtrace e debug))
103103
(format stream "PANIC: ~a.~%" e))
104104
(uiop:quit))))
105105

src/params.lisp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@
3535

3636
(in-package :pgloader.params)
3737

38-
(defparameter *release* nil
38+
(defparameter *release* t
3939
"non-nil when this build is a release build.")
4040

4141
(defparameter *major-version* "3.3")
42-
(defparameter *minor-version* "1")
42+
(defparameter *minor-version* "2")
4343

4444
(defun git-hash ()
4545
"Return the current abbreviated git hash of the development tree."

0 commit comments

Comments
 (0)