From 737bf599a937a2d2499d5fb0548c44c3aff7ab5b Mon Sep 17 00:00:00 2001 From: r Date: Thu, 26 Jan 2023 00:25:03 -0500 Subject: [PATCH] Version 3.0.0 release changelog --- CHANGELOG.rst | 36 ++++++++++++++++++++++++++++++++++++ geojson/_version.py | 2 +- 2 files changed, 37 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index cb6b63a..38dde75 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,42 @@ Changes ======= +3.0.0 (2022-01-26) +------------------ + +- Support for Python versions 3.7-3.11 (Python 2 no longer supported) + +- Primary development branch renamed from `master` to `main` + +- Handle all real numbers as coordinates + + - https://github.com/jazzband/geojson/pull/188 + +- Default precision improvements + + - https://github.com/jazzband/geojson/pull/177 + +- CI improvements + + - https://github.com/jazzband/geojson/pull/172 + - https://github.com/jazzband/geojson/pull/155 + +- utf-8 support added to `geojson.dumps()` + + - https://github.com/jazzband/geojson/pull/165 + +- Polygons now constrained to bounding box + + - https://github.com/jazzband/geojson/pull/147 + +- Better GeometryCollection handling in `util.coords()` + + - https://github.com/jazzband/geojson/pull/146 + +- Improved point validation + + - https://github.com/jazzband/geojson/pull/144 + 2.5.0 (2019-07-18) ------------------ diff --git a/geojson/_version.py b/geojson/_version.py index e64bc6f..a3cddfd 100644 --- a/geojson/_version.py +++ b/geojson/_version.py @@ -1,2 +1,2 @@ -__version__ = "2.5.0" +__version__ = "3.0.0" __version_info__ = tuple(map(int, __version__.split(".")))