From 1f354131d0440ce3ffe42252a7f8be8c09953017 Mon Sep 17 00:00:00 2001 From: Dimitri Fontaine Date: Thu, 17 May 2018 10:41:40 +0200 Subject: [PATCH] Release pgloader 3.5.1. Lots of bug fixes did happen, time to release. --- Makefile | 6 ++++-- src/params.lisp | 4 ++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 1d0a32d5..b99e7274 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 95fc6882..be578cde 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."