Skip to content

Commit

Permalink
Merge pull request #83 from citusdata/release-2.13
Browse files Browse the repository at this point in the history
Bump version to 2.13
  • Loading branch information
hanefi authored Nov 6, 2019
2 parents 77aa0fe + 02d9f9a commit 08db8bf
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ matrix:
- env: PGVERSION=11
- env: PGVERSION=12
before_install:
- git clone -b v0.7.12 --depth 1 https://github.com/citusdata/tools.git
- git clone -b v0.7.13 --depth 1 https://github.com/citusdata/tools.git
- sudo make -C tools install
- setup_apt
- nuke_pg
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2019-11-06
==========
v2.13 - Updated for PostgreSQL 12

2018-11-03
==========
v2.12 - More updates for PostgreSQL 11 and fixes
Expand Down
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
EXTENSION = hll
EXTVERSIONS = 2.10 2.11 2.12
EXTVERSIONS = 2.10 2.11 2.12 2.13

DATA_built = $(foreach v,$(EXTVERSIONS),$(EXTENSION)--$(v).sql)
DATA = $(wildcard $(EXTENSION)--*--*.sql)
Expand All @@ -38,3 +38,5 @@ $(EXTENSION)--2.11.sql: $(EXTENSION)--2.10.sql $(EXTENSION)--2.10--2.11.sql
cat $^ > $@
$(EXTENSION)--2.12.sql: $(EXTENSION)--2.11.sql $(EXTENSION)--2.11--2.12.sql
cat $^ > $@
$(EXTENSION)--2.13.sql: $(EXTENSION)--2.12.sql $(EXTENSION)--2.12--2.13.sql
cat $^ > $@
1 change: 1 addition & 0 deletions expected/setup.out
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
CREATE EXTENSION hll VERSION '2.10';
ALTER EXTENSION hll UPDATE TO '2.11';
ALTER EXTENSION hll UPDATE TO '2.12';
ALTER EXTENSION hll UPDATE TO '2.13';
1 change: 1 addition & 0 deletions hll--2.12--2.13.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-- Empty upgrade file to upgrade extension from 2.12 to 2.13
2 changes: 1 addition & 1 deletion hll.control
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@

# hll extension
comment = 'type for storing hyperloglog data'
default_version = '2.12'
default_version = '2.13'
module_pathname = '$libdir/hll'
1 change: 1 addition & 0 deletions sql/setup.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
CREATE EXTENSION hll VERSION '2.10';
ALTER EXTENSION hll UPDATE TO '2.11';
ALTER EXTENSION hll UPDATE TO '2.12';
ALTER EXTENSION hll UPDATE TO '2.13';

0 comments on commit 08db8bf

Please sign in to comment.