From e9e446695b0d8c1e2071f6beaedf10cb35e00b21 Mon Sep 17 00:00:00 2001 From: Ray <7869818+rayrrr@users.noreply.github.com> Date: Thu, 28 May 2026 17:43:02 -0400 Subject: [PATCH] 3.3.0 version bump --- CHANGELOG.rst | 27 +++++++++++++++++++++++++++ geojson/_version.py | 2 +- 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6bc568d..c4578fd 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,33 @@ Changes ======= +3.3.0 +---------- + +- `__all__` must be a sequence of strings: fix `__init__.py` and `factory.py` + + - https://github.com/jazzband/geojson/pull/247 + +- remove simplejson + + - https://github.com/jazzband/geojson/pull/246 + +- Add support for Python 3.14 + + - https://github.com/jazzband/geojson/pull/245 + +- Remove EOL Python version support + + - https://github.com/jazzband/geojson/pull/244 + +- Update GH action versions for Node 24 + + - https://github.com/jazzband/geojson/pull/243 + +- fix: convert dict features to Feature objects in FeatureCollection + + - https://github.com/jazzband/geojson/pull/242 + 3.2.0 ---------- diff --git a/geojson/_version.py b/geojson/_version.py index 0235a5a..54c6d8e 100644 --- a/geojson/_version.py +++ b/geojson/_version.py @@ -1,2 +1,2 @@ -__version__ = "3.2.0" +__version__ = "3.3.0" __version_info__ = tuple(map(int, __version__.split(".")))