Skip to content

Commit 08db8bf

Browse files
authored
Merge pull request #83 from citusdata/release-2.13
Bump version to 2.13
2 parents 77aa0fe + 02d9f9a commit 08db8bf

File tree

7 files changed

+12
-3
lines changed

7 files changed

+12
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ matrix:
1414
- env: PGVERSION=11
1515
- env: PGVERSION=12
1616
before_install:
17-
- git clone -b v0.7.12 --depth 1 https://github.com/citusdata/tools.git
17+
- git clone -b v0.7.13 --depth 1 https://github.com/citusdata/tools.git
1818
- sudo make -C tools install
1919
- setup_apt
2020
- nuke_pg

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2019-11-06
2+
==========
3+
v2.13 - Updated for PostgreSQL 12
4+
15
2018-11-03
26
==========
37
v2.12 - More updates for PostgreSQL 11 and fixes

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
15+
EXTVERSIONS = 2.10 2.11 2.12 2.13
1616

1717
DATA_built = $(foreach v,$(EXTVERSIONS),$(EXTENSION)--$(v).sql)
1818
DATA = $(wildcard $(EXTENSION)--*--*.sql)
@@ -38,3 +38,5 @@ $(EXTENSION)--2.11.sql: $(EXTENSION)--2.10.sql $(EXTENSION)--2.10--2.11.sql
3838
cat $^ > $@
3939
$(EXTENSION)--2.12.sql: $(EXTENSION)--2.11.sql $(EXTENSION)--2.11--2.12.sql
4040
cat $^ > $@
41+
$(EXTENSION)--2.13.sql: $(EXTENSION)--2.12.sql $(EXTENSION)--2.12--2.13.sql
42+
cat $^ > $@

expected/setup.out

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

hll--2.12--2.13.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.12 to 2.13

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.12'
17+
default_version = '2.13'
1818
module_pathname = '$libdir/hll'

sql/setup.sql

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

0 commit comments

Comments
 (0)