Skip to content

Commit

Permalink
1.10a2 release (#1368)
Browse files Browse the repository at this point in the history
* This is 1.10a2

* Rename VSI plugin prefix

Resolves #1369

* This is 1.10b1.dev0
  • Loading branch information
sgillies committed Apr 16, 2024
1 parent 6581da6 commit ea24f55
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
22 changes: 11 additions & 11 deletions CHANGES.txt
Expand Up @@ -3,14 +3,14 @@ Changes

All issue numbers are relative to https://github.com/Toblerity/Fiona/issues.

1.10a2 (TBD)
------------
1.10a2 (2024-04-05)
-------------------

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.
Expand All @@ -19,15 +19,16 @@ 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
these are declared in the "calc" set of extra requirements) are installed.

Bug fixes:

- Fiona's python opener VSI plugin prefix has been changed to "vsifiopener" to
not conflict with Rasterio (#1368).
- Add a 16-bit integer type "int16" based on OGR's OSFTInt16 integer sub-type
(#1358).
- Allow a GeoJSON collection's layer name to be set on opening in write mode
Expand All @@ -42,16 +43,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:

Expand Down
2 changes: 1 addition & 1 deletion fiona/__init__.py
Expand Up @@ -78,7 +78,7 @@
"remove",
]

__version__ = "1.10a2.dev0"
__version__ = "1.10b1.dev0"
__gdal_version__ = get_gdal_release_name()

gdal_version = get_gdal_version_tuple()
Expand Down
2 changes: 1 addition & 1 deletion fiona/_vsiopener.pyx
Expand Up @@ -19,7 +19,7 @@ log = logging.getLogger(__name__)

# Prefix for all in-memory paths used by GDAL's VSI system
# Except for errors and log messages this shouldn't really be seen by the user
cdef str PREFIX = "/vsipyopener/"
cdef str PREFIX = "/vsifiopener/"
cdef bytes PREFIX_BYTES = PREFIX.encode("utf-8")

# This is global state for the Python filesystem plugin. It currently only
Expand Down

0 comments on commit ea24f55

Please sign in to comment.