Skip to content

Commit

Permalink
v3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
markokr committed Jul 9, 2020
1 parent d97ca63 commit e02fad6
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 28 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,11 @@ on:
jobs:

linux:
name: "Linux + PostgreSQL ${{matrix.PGVER}}"
name: "Ubuntu 18.04 + PostgreSQL ${{matrix.PGVER}}"
runs-on: ubuntu-18.04
strategy:
matrix:
PGVER:
- 10
- 11
- 12
- 13
PGVER: [10, 11, 12, 13]
steps:
- name: "Checkout"
uses: actions/checkout@v2
Expand Down
8 changes: 2 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@

EXTENSION = pgq_ext

EXT_VERSION = 3.1.2
EXT_OLD_VERSIONS = 3.1 3.1.1
EXT_VERSION = 3.2
EXT_OLD_VERSIONS = 3.1 3.1.1 3.1.2

Contrib_regress = init_noext test_pgq_ext test_upgrade
Extension_regress = init_ext test_pgq_ext
Expand All @@ -23,7 +23,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

14 changes: 0 additions & 14 deletions NEWS.rst

This file was deleted.

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

* v3.2

-- Marko Kreen <[email protected]> Thu, 09 Jul 2020 18:02:51 +0300

pgq-ext (3.1.2-1) unstable; urgency=low

* v3.1.2
Expand Down
2 changes: 2 additions & 0 deletions docs/notes/v3.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* Set up Github actions
* Support Postgres 13
5 changes: 4 additions & 1 deletion docs/release.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@

follow pgq/docs/release.txt
* Set new version number in .control, Makefile, debian/changelog
* Add release notes to docs/notes
* git commit -m "vX.Y"
* "make release" to tag and push it out

2 changes: 1 addition & 1 deletion pgq_ext.control
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# pgq_ext
comment = 'Target-side batch tracking infrastructure'
default_version = '3.1.2'
default_version = '3.2'
relocatable = false
superuser = true
schema = 'pg_catalog'
Expand Down

0 comments on commit e02fad6

Please sign in to comment.