Skip to content

Commit

Permalink
Release 3.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zachasme committed Jun 14, 2019
1 parent 47cf4c4 commit 025f9c7
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 5 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ Because H3-pg is versioned in lockstep with the H3 core library, please
avoid adding features or APIs which do not map onto the
[H3 core API](https://uber.github.io/h3/#/documentation/api-reference/).

## [3.4.1] - 2019-06-14
### Added
- Added more docker test utilities.
### Fixed
- Fix `abs` warning.

## [3.4.0] - 2019-06-13
### Changed
- Use same versioning scheme as python and java bindings, which is to lock major and minor to h3 core, and incrementing patch independently.
Expand Down Expand Up @@ -74,7 +80,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.4.0...HEAD
[Unreleased]: https://github.com/bytesandbrains/h3-pg/compare/v3.4.1...HEAD
[3.4.1]: https://github.com/bytesandbrains/h3-pg/compare/v3.4.0...v3.4.1
[3.4.0]: https://github.com/bytesandbrains/h3-pg/compare/v1.0.6...v3.4.0
[1.0.6]: https://github.com/bytesandbrains/h3-pg/compare/v1.0.5...v1.0.6
[1.0.5]: https://github.com/bytesandbrains/h3-pg/compare/v1.0.4...v1.0.5
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.4.0",
"version": "3.4.1",
"maintainer": "Bytes & Brains <[email protected]>",
"license": "apache_2_0",
"provides": {
"h3": {
"abstract": "PostgreSQL bindings for H3",
"file": "sql/h3--3.4.0.sql",
"file": "sql/h3--3.4.1.sql",
"docfile": "README.md",
"version": "3.4.0"
"version": "3.4.1"
}
},
"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 = '3.4.0'
default_version = '3.4.1'
relocatable = true
requires = 'postgis'
18 changes: 18 additions & 0 deletions sql/updates/h3--3.4.0--3.4.1.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 '3.4.1'" to load this file. \quit

0 comments on commit 025f9c7

Please sign in to comment.