Skip to content

Commit

Permalink
Preparing for release 3.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
zachasme committed Apr 7, 2020
1 parent 363a7e1 commit 0abc9bf
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 13 deletions.
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,15 @@ avoid adding features or APIs which do not map onto the
Click to see more.
</summary>

</details>

## [3.6.2] - 2020-04-07

- Add parallel safety flags to PostGIS functions (see [#19], thanks [@komzpa])
- Add B-Tree sort support (see [#24], thanks [@komzpa])
- ⚠️ Make type `h3index` pass-by-value on supported systems (see [#22], [#26], thanks [@komzpa])
- Update `h3` core library to `v3.6.3`

</details>

## [3.6.1] - 2019-12-09

- Add `&&`, `@>` and `<@` operators for overlaps, contains and contained by respectively
Expand Down Expand Up @@ -115,7 +117,8 @@ avoid adding features or APIs which do not map onto the

- Initial public release

[unreleased]: https://github.com/bytesandbrains/h3-pg/compare/v3.6.1...HEAD
[unreleased]: https://github.com/bytesandbrains/h3-pg/compare/v3.6.2...HEAD
[3.6.2]: https://github.com/bytesandbrains/h3-pg/compare/v3.6.1...v3.6.2
[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
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.1",
"version": "3.6.2",
"maintainer": "Bytes & Brains <[email protected]>",
"license": "apache_2_0",
"provides": {
"h3": {
"abstract": "PostgreSQL bindings for H3",
"file": "sql/h3--3.6.1.sql",
"file": "sql/h3--3.6.2.sql",
"docfile": "README.md",
"version": "3.6.1"
"version": "3.6.2"
}
},
"resources": {
Expand Down
5 changes: 1 addition & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -160,11 +160,8 @@ ARCH_SQL = "SELECT typbyval FROM pg_type WHERE typname = 'h3index';"
ifeq ($(ARCH),amd64)
ARCH_BOOL:=t
endif
ifeq ($(ARCH),i386)
ARCH_BOOL:=f
endif
ifndef ARCH_BOOL
$(error Architecture not set)
ARCH_BOOL:=f
endif

# rules for testing if arch determines pass by value/reference
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.2'
relocatable = true
requires = 'postgis'
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2019 Bytes & Brains
* Copyright 2020 Bytes & Brains
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -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.2'" to load this file. \quit

-- add sort support (see #24)
CREATE OR REPLACE FUNCTION h3index_sortsupport(internal)
Expand Down
20 changes: 20 additions & 0 deletions sql/updates/h3--3.6.2--unreleased.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
/*
* Copyright 2020 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

-- no unreleased changes yet

0 comments on commit 0abc9bf

Please sign in to comment.