Skip to content

Commit

Permalink
Bump h3 and release 3.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zachasme committed Dec 9, 2019
1 parent dc60ed2 commit b88b8f8
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 7 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,14 @@ avoid adding features or APIs which do not map onto the
[H3 core API](https://uber.github.io/h3/#/documentation/api-reference/).

## [Unreleased]

## [3.6.1] - 2019-12-09
### Added
- Add operators `&&`, `@>` and `<@` for overlap, contains and contained by respectively.
### Fixed
- Fixed PostgreSQL 12 build error (#17, thanks @Komzpa)
### Changed
- Bump `h3` to `3.6.1`.

## [3.6.0] - 2019-10-07
### Added
Expand Down Expand Up @@ -110,7 +114,8 @@ avoid adding features or APIs which do not map onto the
### Added
- First public release.

[Unreleased]: https://github.com/bytesandbrains/h3-pg/compare/v3.6.0...HEAD
[Unreleased]: https://github.com/bytesandbrains/h3-pg/compare/v3.6.1...HEAD
[3.6.1]: https://github.com/bytesandbrains/h3-pg/compare/v3.6.0...v3.6.1
[3.6.0]: https://github.com/bytesandbrains/h3-pg/compare/v3.5.0...v3.6.0
[3.5.0]: https://github.com/bytesandbrains/h3-pg/compare/v3.4.1...v3.5.0
[3.4.1]: https://github.com/bytesandbrains/h3-pg/compare/v3.4.0...v3.4.1
Expand Down
6 changes: 3 additions & 3 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
"name": "h3",
"abstract": "PostgreSQL bindings for H3",
"description": "PostgreSQL bindings for H3, a hierarchical hexagonal geospatial indexing system.",
"version": "3.6.0",
"version": "3.6.1",
"maintainer": "Bytes & Brains <[email protected]>",
"license": "apache_2_0",
"provides": {
"h3": {
"abstract": "PostgreSQL bindings for H3",
"file": "sql/h3--3.6.0.sql",
"file": "sql/h3--3.6.1.sql",
"docfile": "README.md",
"version": "3.6.0"
"version": "3.6.1"
}
},
"resources": {
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ EXTVERSION = $(shell grep default_version $(EXTENSION).control | \
sed -e "s/default_version[[:space:]]*=[[:space:]]*'\([^']*\)'/\1/")

# h3 core library version to clone and statically link
LIBH3_VERSION = v3.6.0
LIBH3_VERSION = v3.6.1
# directory that h3 core repository is cloned into
LIBH3_SOURCE = libh3-$(LIBH3_VERSION)
# h3 static library location
Expand Down
2 changes: 1 addition & 1 deletion h3.control
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
comment = 'H3 bindings for PostgreSQL'
default_version = 'unreleased'
default_version = '3.6.1'
relocatable = true
requires = 'postgis'
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

-- complain if script is sourced in psql, rather than via CREATE EXTENSION
\echo Use "ALTER EXTENSION h3 UPDATE TO 'unreleased'" to load this file. \quit
\echo Use "ALTER EXTENSION h3 UPDATE TO '3.6.1'" to load this file. \quit

-- add R-tree operators
CREATE OR REPLACE FUNCTION h3index_overlaps(h3index, h3index) RETURNS boolean
Expand Down
18 changes: 18 additions & 0 deletions sql/updates/h3--3.6.1--unreleased.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/*
* Copyright 2019 Bytes & Brains
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

-- complain if script is sourced in psql, rather than via CREATE EXTENSION
\echo Use "ALTER EXTENSION h3 UPDATE TO 'unreleased'" to load this file. \quit

0 comments on commit b88b8f8

Please sign in to comment.