Skip to content

Commit 759777a

Browse files
committed
New upstream version.
1 parent 59d2c5c commit 759777a

File tree

5 files changed

+15
-5
lines changed

5 files changed

+15
-5
lines changed

Diff for: Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# pgloader build tool
22
APP_NAME = pgloader
3-
VERSION = 3.6.7
3+
VERSION = 3.6.8
44

55
# use either sbcl or ccl
66
CL = sbcl

Diff for: debian/changelog

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
pgloader (3.6.7-2) UNRELEASED; urgency=medium
1+
pgloader (3.6.8-1) unstable; urgency=medium
22

3+
* New upstream version.
34
* Depend on libsqlite3-0.
45

5-
-- Christoph Berg <[email protected]> Mon, 26 Sep 2022 11:09:44 +0200
6+
-- Christoph Berg <[email protected]> Mon, 26 Sep 2022 14:24:02 +0200
67

78
pgloader (3.6.7-1) unstable; urgency=medium
89

Diff for: debian/rules

+9
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,22 @@ else
1414
SIZE=16384
1515
endif
1616

17+
MAKEFILE_VERSION = $(shell awk '/^VERSION/ { print $$3 }' Makefile)
18+
DOC_VERSION = $(shell awk '/^release/ { print $$3 }' docs/conf.py | tr -d "'")
19+
SPECFILE_VERSION = $(shell awk '/^Version/ { print $$2 }' pgloader.spec)
20+
DEBIAN_VERSION = $(shell dpkg-parsechangelog -SVersion | cut -d- -f 1)
21+
1722
# buildd provides a build environment where $HOME is not writable, but the
1823
# CL compilers here will need to fill-in a per-user cache
1924
export HOME = $(CURDIR)/debian/home
2025

2126
override_dh_auto_clean:
2227
dh_auto_clean
2328
rm -rf debian/home
29+
# sanity checks on version number
30+
[ "$(MAKEFILE_VERSION)" = "$(DOC_VERSION)" ] # Makefile = docs/conf.py version
31+
[ "$(MAKEFILE_VERSION)" = "$(SPECFILE_VERSION)" ] # Makefile = pgloader.spec version
32+
[ "$(MAKEFILE_VERSION)" = "$(DEBIAN_VERSION)" ] # Makefile = debian/changelog version
2433

2534
override_dh_auto_build-indep:
2635
# do nothing

Diff for: docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
# The short X.Y version.
5858
version = '3.6'
5959
# The full version, including alpha/beta/rc tags.
60-
release = '3.6.7'
60+
release = '3.6.8'
6161

6262
# The language for content autogenerated by Sphinx. Refer to documentation
6363
# for a list of supported languages.

Diff for: pgloader.spec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Summary: extract, transform and load data into PostgreSQL
22
Name: pgloader
3-
Version: 3.6.7
3+
Version: 3.6.8
44
Release: 22%{?dist}
55
License: The PostgreSQL Licence
66
Group: System Environment/Base

0 commit comments

Comments
 (0)