diff --git a/Makefile b/Makefile index 1d0a32d..b99e727 100644 --- a/Makefile +++ b/Makefile @@ -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 @@ -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 @@ -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 diff --git a/src/params.lisp b/src/params.lisp index 95fc688..be578cd 100644 --- a/src/params.lisp +++ b/src/params.lisp @@ -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."