Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -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
----------

Expand Down
2 changes: 1 addition & 1 deletion geojson/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "3.2.0"
__version__ = "3.3.0"
__version_info__ = tuple(map(int, __version__.split(".")))
Loading