Skip to content

Commit

Permalink
Release pgloader 3.5.1.
Browse files Browse the repository at this point in the history
Lots of bug fixes did happen, time to release.
  • Loading branch information
dimitri committed May 17, 2018
1 parent f30f596 commit 1f35413
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# pgloader build tool
APP_NAME = pgloader
VERSION = 3.4.2
VERSION = 3.5.1

# use either sbcl or ccl
CL = sbcl
Expand All @@ -11,7 +11,9 @@ DYNSIZE = 4096
LISP_SRC = $(wildcard src/*lisp) \
$(wildcard src/monkey/*lisp) \
$(wildcard src/utils/*lisp) \
$(wildcard src/load/*lisp) \
$(wildcard src/parsers/*lisp) \
$(wildcard src/pg-copy/*lisp) \
$(wildcard src/pgsql/*lisp) \
$(wildcard src/sources/*lisp) \
pgloader.asd
Expand All @@ -22,7 +24,7 @@ QLDIR = $(BUILDDIR)/quicklisp
MANIFEST = $(BUILDDIR)/manifest.ql
LATEST = $(BUILDDIR)/pgloader-latest.tgz

BUNDLEDIST = 2017-04-03
BUNDLEDIST = 2018-04-30
BUNDLENAME = pgloader-bundle-$(VERSION)
BUNDLEDIR = $(BUILDDIR)/bundle/$(BUNDLENAME)
BUNDLE = $(BUILDDIR)/$(BUNDLENAME).tgz
Expand Down
4 changes: 2 additions & 2 deletions src/params.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
(defparameter *release* nil
"non-nil when this build is a release build.")

(defparameter *major-version* "3.4")
(defparameter *minor-version* "2")
(defparameter *major-version* "3.5")
(defparameter *minor-version* "1")

(defun git-hash ()
"Return the current abbreviated git hash of the development tree."
Expand Down

0 comments on commit 1f35413

Please sign in to comment.