From 47c744443423bf28c91b83a5272844867d1b3bd3 Mon Sep 17 00:00:00 2001 From: Zacharias Knudsen Date: Wed, 6 Nov 2024 11:33:00 +0100 Subject: [PATCH] Prepare release 4.1.4 --- CHANGELOG.md | 9 ++++++--- CMakeLists.txt | 6 +++--- h3/CMakeLists.txt | 2 +- .../{h3--4.1.3--unreleased.sql => h3--4.1.3--4.1.4.sql} | 6 ++---- h3_postgis/CMakeLists.txt | 2 +- ....1.3--unreleased.sql => h3_postgis--4.1.3--4.1.4.sql} | 4 ++-- 6 files changed, 15 insertions(+), 14 deletions(-) rename h3/sql/updates/{h3--4.1.3--unreleased.sql => h3--4.1.3--4.1.4.sql} (87%) rename h3_postgis/sql/updates/{h3_postgis--4.1.3--unreleased.sql => h3_postgis--4.1.3--4.1.4.sql} (84%) diff --git a/CHANGELOG.md b/CHANGELOG.md index e795d885..ba9ed5f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,11 +26,13 @@ avoid adding features or APIs which do not map onto the Click to see more. + + +## [4.1.4] - 2024-11-06 + - Fix library extension on macOS for PostgreSQL >= 16 (see [#140], thanks [@bayandin]) - Add support for binary I/O (see [#160], thanks [@robertozimek]) - - ## [4.1.3] - 2023-07-26 - Add `geometry @ int` and `geography @ int` operators, as shortcuts for `h3_lat_lng_to_cell`. @@ -201,7 +203,8 @@ avoid adding features or APIs which do not map onto the - Initial public release -[unreleased]: https://github.com/zachasme/h3-pg/compare/v4.1.3...HEAD +[unreleased]: https://github.com/zachasme/h3-pg/compare/v4.1.4...HEAD +[4.1.4]: https://github.com/zachasme/h3-pg/compare/v4.1.3...v4.1.4 [4.1.3]: https://github.com/zachasme/h3-pg/compare/v4.1.2...v4.1.3 [4.1.2]: https://github.com/zachasme/h3-pg/compare/v4.1.1...v4.1.2 [4.1.1]: https://github.com/zachasme/h3-pg/compare/v4.1.0...v4.1.1 diff --git a/CMakeLists.txt b/CMakeLists.txt index 442fe10e..bf538038 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -30,12 +30,12 @@ endif() # Listing the version is nice here since it sets lots of useful variables project( h3-pg - VERSION 4.1.3 + VERSION 4.1.4 LANGUAGES C ) # set this to "${PROJECT_VERSION}" on release -#set(INSTALL_VERSION "${PROJECT_VERSION}") -set(INSTALL_VERSION "unreleased") +set(INSTALL_VERSION "${PROJECT_VERSION}") +#set(INSTALL_VERSION "unreleased") set(H3_CORE_VERSION 4.1.0) set(H3_CORE_SHA256 ec99f1f5974846bde64f4513cf8d2ea1b8d172d2218ab41803bf6a63532272bc) diff --git a/h3/CMakeLists.txt b/h3/CMakeLists.txt index 48ccf6c1..ecbd18c5 100644 --- a/h3/CMakeLists.txt +++ b/h3/CMakeLists.txt @@ -73,7 +73,7 @@ PostgreSQL_add_extension(postgresql_h3 sql/updates/h3--4.1.0--4.1.1.sql sql/updates/h3--4.1.1--4.1.2.sql sql/updates/h3--4.1.2--4.1.3.sql - sql/updates/h3--4.1.3--unreleased.sql + sql/updates/h3--4.1.3--4.1.4.sql ) # configure diff --git a/h3/sql/updates/h3--4.1.3--unreleased.sql b/h3/sql/updates/h3--4.1.3--4.1.4.sql similarity index 87% rename from h3/sql/updates/h3--4.1.3--unreleased.sql rename to h3/sql/updates/h3--4.1.3--4.1.4.sql index 17d45143..4019fa6d 100644 --- a/h3/sql/updates/h3--4.1.3--unreleased.sql +++ b/h3/sql/updates/h3--4.1.3--4.1.4.sql @@ -1,5 +1,5 @@ /* - * Copyright 2023 Bytes & Brains + * Copyright 2024 Bytes & Brains * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -15,14 +15,12 @@ */ -- 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 '4.1.4'" to load this file. \quit ---@ internal CREATE OR REPLACE FUNCTION h3index_recv(internal) RETURNS h3index AS 'h3' LANGUAGE C IMMUTABLE STRICT PARALLEL SAFE; ---@ internal CREATE OR REPLACE FUNCTION h3index_send(h3index) RETURNS bytea AS 'h3' LANGUAGE C IMMUTABLE STRICT PARALLEL SAFE; diff --git a/h3_postgis/CMakeLists.txt b/h3_postgis/CMakeLists.txt index 4ec679ae..ffe8d020 100644 --- a/h3_postgis/CMakeLists.txt +++ b/h3_postgis/CMakeLists.txt @@ -35,7 +35,7 @@ PostgreSQL_add_extension(postgresql_h3_postgis sql/updates/h3_postgis--4.1.0--4.1.1.sql sql/updates/h3_postgis--4.1.1--4.1.2.sql sql/updates/h3_postgis--4.1.2--4.1.3.sql - sql/updates/h3_postgis--4.1.3--unreleased.sql + sql/updates/h3_postgis--4.1.3--4.1.4.sql ) # link diff --git a/h3_postgis/sql/updates/h3_postgis--4.1.3--unreleased.sql b/h3_postgis/sql/updates/h3_postgis--4.1.3--4.1.4.sql similarity index 84% rename from h3_postgis/sql/updates/h3_postgis--4.1.3--unreleased.sql rename to h3_postgis/sql/updates/h3_postgis--4.1.3--4.1.4.sql index 45153334..4f9a3a04 100644 --- a/h3_postgis/sql/updates/h3_postgis--4.1.3--unreleased.sql +++ b/h3_postgis/sql/updates/h3_postgis--4.1.3--4.1.4.sql @@ -1,5 +1,5 @@ /* - * Copyright 2023 Bytes & Brains + * Copyright 2024 Bytes & Brains * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -15,4 +15,4 @@ */ -- complain if script is sourced in psql, rather than via CREATE EXTENSION -\echo Use "ALTER EXTENSION h3_postgis UPDATE TO 'unreleased'" to load this file. \quit +\echo Use "ALTER EXTENSION h3_postgis UPDATE TO '4.1.4'" to load this file. \quit