From 755b55d2b3c4efbd6d138f44d0ba964b02c74d9e Mon Sep 17 00:00:00 2001 From: Christoph Berg Date: Sat, 13 Aug 2022 10:35:39 +0200 Subject: [PATCH] New upstream version --- Makefile | 2 +- debian/changelog | 7 +++++-- docs/conf.py | 2 +- pgloader.spec | 2 +- src/params.lisp | 2 +- 5 files changed, 9 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 55a8fd0..4225b25 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # pgloader build tool APP_NAME = pgloader -VERSION = 3.6.6 +VERSION = 3.6.7 # use either sbcl or ccl CL = sbcl diff --git a/debian/changelog b/debian/changelog index 4add0c1..4ae189d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,11 @@ -pgloader (3.6.6-2) UNRELEASED; urgency=medium +pgloader (3.6.7-1) unstable; urgency=medium + * New upstream version: * Set SBCL dynamic space size to 16 GB on 64 bit architectures. + * Improve documentation with command lines and defaults. + * SBCL compiler notes should not be fatal to pgloader. - -- Christoph Berg Mon, 11 Jul 2022 15:31:49 +0200 + -- Christoph Berg Sat, 13 Aug 2022 10:32:41 +0200 pgloader (3.6.6-1) unstable; urgency=medium diff --git a/docs/conf.py b/docs/conf.py index c28fe14..35c0c3e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -57,7 +57,7 @@ author = 'Dimitri Fontaine' # The short X.Y version. version = '3.6' # The full version, including alpha/beta/rc tags. -release = '3.6.6' +release = '3.6.7' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pgloader.spec b/pgloader.spec index 8b1b5a3..09124f0 100644 --- a/pgloader.spec +++ b/pgloader.spec @@ -1,6 +1,6 @@ Summary: extract, transform and load data into PostgreSQL Name: pgloader -Version: 3.6.6 +Version: 3.6.7 Release: 22%{?dist} License: The PostgreSQL Licence Group: System Environment/Base diff --git a/src/params.lisp b/src/params.lisp index 812467d..4f8ddaa 100644 --- a/src/params.lisp +++ b/src/params.lisp @@ -44,7 +44,7 @@ "non-nil when this build is a release build.") (defparameter *major-version* "3.6") -(defparameter *minor-version* "6") +(defparameter *minor-version* "7") (defun git-hash () "Return the current abbreviated git hash of the development tree."