Skip to content

Commit

Permalink
Prepare for updates on unreleased develop version
Browse files Browse the repository at this point in the history
  • Loading branch information
zachasme committed Jun 23, 2021
1 parent ae78aa8 commit e277b20
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 11 deletions.
12 changes: 6 additions & 6 deletions .gitignore
Expand Up @@ -8,12 +8,12 @@ h3/test/regression.*
h3/test/results

# Generated
h3--*.sql
h3/src/include/extension.h
h3/test/expected/ci-*.out
h3/test/sql/ci-*.sql
libh3-*/
h3-*.zip
/h3--*.sql
/h3/src/include/extension.h
/h3/test/expected/ci-*.out
/h3/test/sql/ci-*.sql
/libh3-*/
/h3-*.zip
*.BAK

# IDEs
Expand Down
6 changes: 3 additions & 3 deletions META.json
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.7.1",
"version": "unreleased",
"maintainer": "Bytes & Brains <developers@bytesandbrains.com>",
"license": "apache_2_0",
"provides": {
"h3": {
"abstract": "PostgreSQL bindings for H3",
"file": "sql/h3--3.7.1.sql",
"file": "sql/h3--unreleased.sql",
"docfile": "README.md",
"version": "3.7.1"
"version": "unreleased"
}
},
"resources": {
Expand Down
2 changes: 1 addition & 1 deletion h3.control
@@ -1,4 +1,4 @@
comment = 'H3 bindings for PostgreSQL'
default_version = '3.7.1'
default_version = 'unreleased'
relocatable = true
requires = 'postgis'
2 changes: 1 addition & 1 deletion h3/sql/updates/h3--3.7.0--3.7.1.sql
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.7.1'" to load this file. \quit

COMMENT ON OPERATOR && (h3index, h3index) IS
'Returns true if the two H3 indexes intersect';
Expand Down
18 changes: 18 additions & 0 deletions h3/sql/updates/h3--3.7.1--unreleased.sql
@@ -0,0 +1,18 @@
/*
* Copyright 2021 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 e277b20

Please sign in to comment.