From 80b6c46aae275c68d3f366dda0962337cc588d64 Mon Sep 17 00:00:00 2001 From: Dimitri Fontaine Date: Wed, 15 Jan 2014 22:53:43 +0100 Subject: [PATCH] Version 3.0.97. --- Makefile | 4 ++-- bootstrap-debian.sh | 2 +- debian/changelog | 10 ++++++++++ debian/control | 2 +- pgloader.spec | 4 +++- src/params.lisp | 2 +- test/parse/hans.goeuro.load | 2 ++ 7 files changed, 20 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 715d224..2b35666 100644 --- a/Makefile +++ b/Makefile @@ -84,7 +84,7 @@ pgloader: $(PGLOADER) ; test: $(MAKE) PGLOADER=$(realpath $(PGLOADER)) -C test all -deb: +deb: docs # intended for use on a debian system mkdir -p $(DEBUILD_ROOT) && rm -rf $(DEBUILD_ROOT)/* rsync -Ca --exclude=build/* ./ $(DEBUILD_ROOT)/ @@ -96,7 +96,7 @@ rpm: # intended for use on a CentOS or other RPM based system mkdir -p $(DEBUILD_ROOT) && rm -rf $(DEBUILD_ROOT)/* rsync -Ca --exclude=build/* ./ $(DEBUILD_ROOT)/ - cd /tmp && tar czf $(HOME)/rpmbuild/SOURCES/pgloader-3.0.96.tar.gz pgloader + cd /tmp && tar czf $(HOME)/rpmbuild/SOURCES/pgloader-3.0.97.tar.gz pgloader cd $(DEBUILD_ROOT) && rpmbuild -ba pgloader.spec cp -a $(HOME)/rpmbuild/SRPMS/*rpm build cp -a $(HOME)/rpmbuild/RPMS/x86_64/*rpm build diff --git a/bootstrap-debian.sh b/bootstrap-debian.sh index 34aa9c7..baedf0a 100644 --- a/bootstrap-debian.sh +++ b/bootstrap-debian.sh @@ -20,7 +20,7 @@ sudo apt-get install -y postgresql-9.3 postgresql-contrib-9.3 \ postgresql-9.3-ip4r \ sbcl \ git patch unzip \ - devscripts \ + devscripts pandoc \ libsqlite3-dev sudo DEBIAN_FRONTEND=noninteractive \ diff --git a/debian/changelog b/debian/changelog index 0b7058a..c8be4df 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +pgloader (3.0.97-1) unstable; urgency=low + + * Release Candidate 7 + * Fix log-filename location + * Switch to the new cl-csv version + * Add a documentation website with tutorials + * Fix ASDF dependencies + + -- Dimitri Fontaine Thu, 15 Jan 2014 01:33:16 +0400 + pgloader (3.0.96-1) unstable; urgency=low * Release Candidate 6 diff --git a/debian/control b/debian/control index eed057a..3af8f9b 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: pgloader Section: database Priority: extra Maintainer: Dimitri Fontaine -Build-Depends: debhelper (>= 8.0.0), sbcl (>= 1.1.13) +Build-Depends: debhelper (>= 8.0.0), sbcl (>= 1.1.13), pandoc Standards-Version: 3.9.3 Homepage: https://github.com/dimitri/pgloader Vcs-Git: https://github.com/dimitri/pgloader.git diff --git a/pgloader.spec b/pgloader.spec index 52375f9..6909716 100644 --- a/pgloader.spec +++ b/pgloader.spec @@ -1,6 +1,6 @@ Summary: extract, transform and load data into PostgreSQL Name: pgloader -Version: 3.0.96 +Version: 3.0.97 Release: 21%{?dist} License: The PostgreSQL Licence Group: System Environment/Base @@ -37,6 +37,8 @@ cp build/pgloader.exe %{buildroot}/%{_bindir}/pgloader %{_bindir}/* %changelog +* Wed Dec 15 2014 Dimitri Fontaine 3.0.97 +- Assorted fixes, release candidate 7 * Tue Dec 31 2013 Dimitri Fontaine 3.0.96 - Package as an RPM diff --git a/src/params.lisp b/src/params.lisp index 44e00c3..e5dfcc9 100644 --- a/src/params.lisp +++ b/src/params.lisp @@ -32,7 +32,7 @@ (in-package :pgloader.params) -(defparameter *version-string* "3.0.96" +(defparameter *version-string* "3.0.97" "pgloader version strings, following Emacs versionning model.") ;; we can't use pgloader.utils:make-pgstate yet because params is compiled diff --git a/test/parse/hans.goeuro.load b/test/parse/hans.goeuro.load index 68cdd55..9b77e4f 100644 --- a/test/parse/hans.goeuro.load +++ b/test/parse/hans.goeuro.load @@ -14,6 +14,8 @@ LOAD DATABASE -- override char(1) to varchar(1), just use char(1) here. type char when (= precision 1) to char keep typemod + -- column enumerate.foo to boolenum using empty-string-to-null + MATERIALIZE VIEWS d as $$ select cast(d as date) as d, count(*) as n