Skip to content

Commit 6918381

Browse files
committed
version bump to 2.2.1
1 parent b747123 commit 6918381

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### topn v2.2.1 (December 12, 2018) ###
2+
3+
* Version bump to 2.2.1
4+
15
### topn v2.2.0 (November 02, 2018) ###
26

37
* Adds PostgreSQL 11 support

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
MODULES = topn
44
EXTENSION = topn
5-
EXTVERSIONS = 2.0.0 2.1.0 2.2.0
5+
EXTVERSIONS = 2.0.0 2.1.0 2.2.0 2.2.1
66
DATA = $(wildcard $(EXTENSION)--*--*.sql)
77
DATA_built = $(foreach v,$(EXTVERSIONS),$(EXTENSION)--$(v).sql)
88

@@ -19,6 +19,8 @@ $(EXTENSION)--2.1.0.sql: $(EXTENSION)--2.0.0.sql $(EXTENSION)--2.0.0--2.1.0.sql
1919
cat $^ > $@
2020
$(EXTENSION)--2.2.0.sql: $(EXTENSION)--2.1.0.sql $(EXTENSION)--2.1.0--2.2.0.sql
2121
cat $^ > $@
22+
$(EXTENSION)--2.2.1.sql: $(EXTENSION)--2.2.0.sql $(EXTENSION)--2.2.0--2.2.1.sql
23+
cat $^ > $@
2224

2325
EXTRA_CLEAN += -r $(RPM_BUILD_ROOT)
2426

topn--2.2.0--2.2.1.sql

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/* topn--2.2.0--2.2.1 */
2+
3+
/* bump version to 2.2.1 */

topn.control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# topn extension
22
comment = 'type for top-n JSONB'
3-
default_version = '2.2.0'
3+
default_version = '2.2.1'
44
module_pathname = '$libdir/topn'

0 commit comments

Comments
 (0)