Skip to content

Commit

Permalink
Prepare for release 3.7.2 (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
zachasme authored Apr 13, 2022
1 parent 2ddf364 commit c2900d2
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,12 @@ avoid adding features or APIs which do not map onto the
Click to see more.
</summary>

</details>

## [3.7.2] - 2022-04-13

- Allow `NULL` in `holes` array for `h3_polyfill` (see [#64], thanks [@mngr777])
- Allow >1Gb memory allocations for `h3_polyfill` (see [#65], thanks [@mngr777])
</details>

## [3.7.1] - 2021-06-23

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": "unreleased",
"version": "3.7.2",
"maintainer": "Bytes & Brains <[email protected]>",
"license": "apache_2_0",
"provides": {
"h3": {
"abstract": "PostgreSQL bindings for H3",
"file": "sql/h3--unreleased.sql",
"file": "sql/h3--3.7.2.sql",
"docfile": "README.md",
"version": "unreleased"
"version": "3.7.2"
}
},
"resources": {
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.7.2'
relocatable = true
requires = 'postgis'
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2021 Bytes & Brains
* Copyright 2022 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,4 +15,6 @@
*/

-- 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.7.2'" to load this file. \quit

-- no changes

0 comments on commit c2900d2

Please sign in to comment.