From eb520dd6175e5cda23ec36df971b7c37c1e7aa2a Mon Sep 17 00:00:00 2001 From: Sean Gillies Date: Wed, 3 Apr 2024 11:39:36 -0600 Subject: [PATCH] This is 1.10a2 --- CHANGES.txt | 20 +++++++++----------- fiona/__init__.py | 2 +- 2 files changed, 10 insertions(+), 12 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index f7e826e8..75ae211b 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -3,14 +3,14 @@ Changes All issue numbers are relative to https://github.com/Toblerity/Fiona/issues. -1.10a2 (TBD) ------------- +1.10a2 (2024-04-03) +------------------- Deprecations: -- The FIELD_TYPES, FIELD_TYPES_MAP, and FIELD_TYPES_MAP_REV attributes - of fiona.schema are no longer used by the project and will be removed - in version 2.0 (#1366). +- The FIELD_TYPES, FIELD_TYPES_MAP, and FIELD_TYPES_MAP_REV attributes of + fiona.schema are no longer used by the project and will be removed in version + 2.0 (#1366). - The Python style of rio-filter expressions introduced in version 1.0 are deprecated. Only the parenthesized list type of expression will be supported by version 2.0. @@ -19,8 +19,7 @@ New features: - All supported Fiona field types are now represented by classes in fiona.schema. These classes are mapped in FIELD_TYPES_MAP2 and - FIELD_TYPES_MAP2_REV to OGR field type and field subtype pairs - (#1366). + FIELD_TYPES_MAP2_REV to OGR field type and field subtype pairs (#1366). - The filter, map, and reduce CLI commands from the public domain version 1.1.0 of fio-planet have been incorporated into Fiona's core set of commands (#1362). These commands are only available if pyparsing and shapely (each of @@ -42,16 +41,15 @@ Bug fixes: Other changes: -- Feature builder and field getter/setter instances are reused when - reading and writing features (#1366). +- Feature builder and field getter/setter instances are reused when reading and + writing features (#1366). 1.10a1 (2024-03-01) ------------------- Python version: -Fiona 1.10 will be compatible with Numpy versions 1 and 2 and will require -Python version 3.9 or higher. +Fiona 1.10 will require Python version 3.9 or higher. Deprecations: diff --git a/fiona/__init__.py b/fiona/__init__.py index 924137cd..b6546932 100644 --- a/fiona/__init__.py +++ b/fiona/__init__.py @@ -78,7 +78,7 @@ "remove", ] -__version__ = "1.10a2.dev0" +__version__ = "1.10a2" __gdal_version__ = get_gdal_release_name() gdal_version = get_gdal_version_tuple()