Skip to content

Commit 2732580

Browse files
authored
Bump version to 2.14 (#88)
Bump version to 2.14
2 parents f69c46e + f9bc130 commit 2732580

File tree

6 files changed

+11
-2
lines changed

6 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+
2019-11-15
2+
==========
3+
v2.14 - Fixed an issue in version upgrades
4+
15
2019-11-06
26
==========
37
v2.13 - Updated for PostgreSQL 12

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414
EXTENSION = hll
15-
EXTVERSIONS = 2.10 2.11 2.12 2.13
15+
EXTVERSIONS = 2.10 2.11 2.12 2.13 2.14
1616

1717
DATA_built = $(foreach v,$(EXTVERSIONS),$(EXTENSION)--$(v).sql)
1818
DATA = $(wildcard $(EXTENSION)--*--*.sql)
@@ -40,3 +40,5 @@ $(EXTENSION)--2.12.sql: $(EXTENSION)--2.11.sql $(EXTENSION)--2.11--2.12.sql
4040
cat $^ > $@
4141
$(EXTENSION)--2.13.sql: $(EXTENSION)--2.12.sql $(EXTENSION)--2.12--2.13.sql
4242
cat $^ > $@
43+
$(EXTENSION)--2.14.sql: $(EXTENSION)--2.13.sql $(EXTENSION)--2.13--2.14.sql
44+
cat $^ > $@

expected/setup.out

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ CREATE EXTENSION hll VERSION '2.10';
22
ALTER EXTENSION hll UPDATE TO '2.11';
33
ALTER EXTENSION hll UPDATE TO '2.12';
44
ALTER EXTENSION hll UPDATE TO '2.13';
5+
ALTER EXTENSION hll UPDATE TO '2.14';

hll--2.13--2.14.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
-- Empty upgrade file to upgrade extension from 2.13 to 2.14

hll.control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414

1515
# hll extension
1616
comment = 'type for storing hyperloglog data'
17-
default_version = '2.13'
17+
default_version = '2.14'
1818
module_pathname = '$libdir/hll'

sql/setup.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ CREATE EXTENSION hll VERSION '2.10';
22
ALTER EXTENSION hll UPDATE TO '2.11';
33
ALTER EXTENSION hll UPDATE TO '2.12';
44
ALTER EXTENSION hll UPDATE TO '2.13';
5+
ALTER EXTENSION hll UPDATE TO '2.14';

0 commit comments

Comments
 (0)