Release pgloader 3.4.1

This commit is contained in:
Dimitri Fontaine 2017-07-06 16:53:29 +02:00
parent 058f9d5451
commit d71da6ba66
4 changed files with 28 additions and 7 deletions

View File

@ -1,6 +1,6 @@
# pgloader build tool
APP_NAME = pgloader
VERSION = 3.3.2
VERSION = 3.4.1
# use either sbcl or ccl
CL = sbcl
@ -168,8 +168,8 @@ clean-bundle:
$(BUNDLEDIR):
mkdir -p $@
$(CL) $(CL_OPTS) --load $(QLDIR)/setup.lisp \
--eval '(ql:bundle-systems (list "pgloader" "buildapp") :to "$@")' \
--eval '(quit)'
--eval '(defvar *bundle-dir* "$@")' \
--load bundle/ql.lisp
$(BUNDLE): $(BUNDLEDIR)
cp bundle/README.md $(BUNDLEDIR)

15
bundle/ql.lisp Normal file
View File

@ -0,0 +1,15 @@
;;;
;;; Script used to prepare a pgloader bundle
;;;
;; fetch a list of recent candidates with
;; (subseq (ql-dist:available-versions (ql-dist:dist "quicklisp")) 0 5)
;;
;; the 2017-06-30 QL release is broken, avoid it.
;;
(defvar *ql-dist*
"http://beta.quicklisp.org/dist/quicklisp/2017-04-03/distinfo.txt")
(ql-dist:install-dist *ql-dist* :prompt nil :replace t)
(ql:bundle-systems '("pgloader" "buildapp") :to *bundle-dir*)
(quit)

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
pgloader (3.4.1+dfsg-1) unstable; urgency=medium
* New release, bugfixes and new features
-- Dimitri Fontaine <dim@tapoueh.org> Thu, 06 Jul 2017 16:51:53 +0300
pgloader (3.3.2+dfsg-1) unstable; urgency=medium
* Fixes github issue 453 (Closes: #843555)

View File

@ -38,11 +38,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* "2")
(defparameter *major-version* "3.4")
(defparameter *minor-version* "1")
(defun git-hash ()
"Return the current abbreviated git hash of the development tree."