Skip to content

Commit

Permalink
v3.3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
markokr committed Jul 9, 2020
1 parent 90f9252 commit 7878da7
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 10 deletions.
8 changes: 2 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@

EXTENSION = pgq_coop

EXT_VERSION = 3.3.7
EXT_OLD_VERSIONS = 3.1 3.1.1 3.3 3.3.1 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6
EXT_VERSION = 3.3.8
EXT_OLD_VERSIONS = 3.1 3.1.1 3.3 3.3.1 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6 3.3.8

Contrib_regress = pgq_coop_init_noext pgq_coop_test
Extension_regress = pgq_coop_init_ext pgq_coop_test
Expand All @@ -25,7 +25,3 @@ deb:
debclean:
make -f debian/rules debclean

TARNAME = $(EXTENSION)-$(EXT_VERSION)
dist:
git archive --format=tar.gz --prefix=$(TARNAME)/ -o $(TARNAME).tar.gz HEAD

6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
pgq-coop (3.3.8-1) unstable; urgency=low

* v3.3.8

-- Marko Kreen <[email protected]> Thu, 09 Jul 2020 17:46:44 +0300

pgq-coop (3.3.7-1) unstable; urgency=low

* v3.3.7
Expand Down
3 changes: 3 additions & 0 deletions docs/notes/v3.3.8.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

* final rel cleanup

12 changes: 9 additions & 3 deletions mk/common-pgxs.mk
Original file line number Diff line number Diff line change
Expand Up @@ -144,10 +144,16 @@ structure/oldgrants_$(EXTENSION).sql: structure/grants.ini structure/grants.sql

checkver:
@echo "Checking version numbers"
grep -q "^default_version *= *'$(EXT_VERSION)'" $(EXTENSION).control \
@grep -q "^default_version *= *'$(EXT_VERSION)'" $(EXTENSION).control \
|| { echo "ERROR: $(EXTENSION).control has wrong version"; exit 1; }
test -f "docs/notes/v$(EXT_VERSION).md" \
@test -f "docs/notes/v$(EXT_VERSION).md" \
|| { echo "ERROR: notes missing: docs/notes/v$(EXT_VERSION).md"; exit 1; }
head debian/changelog | grep -q "[(]$(EXT_VERSION)-" debian/changelog \
@head debian/changelog | grep -q "[(]$(EXT_VERSION)-" debian/changelog \
|| { echo "ERROR: debian/changelog has wrong version"; exit 1; }

all: checkver

TARNAME = $(EXTENSION)-$(EXT_VERSION)
dist: checkver
git archive --format=tar.gz --prefix=$(TARNAME)/ -o $(TARNAME).tar.gz HEAD

2 changes: 1 addition & 1 deletion pgq_coop.control
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# pgq_coop
comment = 'Cooperative queue consuming for PgQ'
default_version = '3.3.7'
default_version = '3.3.8'
relocatable = false
superuser = true
schema = 'pg_catalog'
Expand Down

0 comments on commit 7878da7

Please sign in to comment.