From e9e8c3445c13725d7455fe6f706472a4f39d5b89 Mon Sep 17 00:00:00 2001 From: tpike3 Date: Thu, 20 Jul 2023 19:48:18 -0400 Subject: [PATCH] update history for Mesa 2.1 --- HISTORY.rst | 16 +++++++++++++++- mesa/__init__.py | 2 +- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 62bf4a020b6..88efeed763b 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,13 +3,27 @@ Release History --------------- -2.0.0 (2023-04-15) Wellton +2.1.0 (2023-07-22) Youngtown ++++++++++++++++++++++++++++++ + +This release creates `mesa.experimental` namespace, this solves the issue that PyPI release will not allow git-based install. + +**Users should read the Mesa 2.0.0 release note (directly below this), as this contains the details about the breaking +changes and other major changes that were part of Mesa 2.0 release.** + +Changes: + * Creates `mesa.experimental` namespace #1736 + * Fix Ruff lint error #1737 + * Update permissions for PyPI #1732 + +2.0.0 (2023-07-15) Wellton ++++++++++++++++++++++++++ **Special notes** Mesa 2.0 includes: * **an experimental pure python user interface/ visualization that is also jupyter compatible please see the** `visualization tutorial`_ + * an improved `datacollector` that allows collection by agent type * several breaking changes that provide significant improvements to Mesa. .. _visualization tutorial: https://mesa.readthedocs.io/en/latest/tutorials/visualization_tutorial.html diff --git a/mesa/__init__.py b/mesa/__init__.py index 8837bc37e97..b1a8d54c29a 100644 --- a/mesa/__init__.py +++ b/mesa/__init__.py @@ -25,7 +25,7 @@ ] __title__ = "mesa" -__version__ = "2.0" +__version__ = "2.1" __license__ = "Apache 2.0" _this_year = datetime.datetime.now(tz=datetime.timezone.utc).date().year __copyright__ = f"Copyright {_this_year} Project Mesa Team"