From cf4786945cd7436a734e5bdbcb940e0e32c4ef0b Mon Sep 17 00:00:00 2001 From: Peter Meisrimel Date: Thu, 12 Dec 2024 09:28:25 +0100 Subject: [PATCH] 3.6.0 release prep --- CHANGELOG | 2 ++ doc/sphinx/source/changelog.rst | 6 ++++++ doc/sphinx/source/conf.py | 4 ++-- setup.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 965358b6..9cfb52ae 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,8 @@ --- CHANGELOG --- --- Assimulo-FUTURE--- + +--- Assimulo-3.6.0--- * Added get_sundials_version function (import from assimulo.solvers.sundials). * Fixed bug that Radau5ODE would not count state events in statistics. * Removed tests from the Assimulo installation. diff --git a/doc/sphinx/source/changelog.rst b/doc/sphinx/source/changelog.rst index 6ba9274c..566f2628 100644 --- a/doc/sphinx/source/changelog.rst +++ b/doc/sphinx/source/changelog.rst @@ -2,6 +2,12 @@ ========== Changelog ========== +--- Assimulo-3.6.0--- + * Added get_sundials_version function (import from assimulo.solvers.sundials). + * Fixed bug that Radau5ODE would not count state events in statistics. + * Removed tests from the Assimulo installation. + * Changed testing framework from `nose` to `pytest`. + --- Assimulo-3.5.2 --- * Allow to build without distutils for Python>=3.12 support diff --git a/doc/sphinx/source/conf.py b/doc/sphinx/source/conf.py index 9f4d1866..1c67034a 100644 --- a/doc/sphinx/source/conf.py +++ b/doc/sphinx/source/conf.py @@ -50,9 +50,9 @@ # built documents. # # The short X.Y version. -version = '3.5.2' +version = '3.6.0' # The full version, including alpha/beta/rc tags. -release = '3.5.2' +release = '3.6.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 80e7a21e..36fc0fc3 100644 --- a/setup.py +++ b/setup.py @@ -657,7 +657,7 @@ def fortran_extensionlists(self): NAME = "Assimulo" AUTHOR = u"C. Winther (Andersson), C. Führer, J. Åkesson, M. Gäfvert" AUTHOR_EMAIL = "christian.winther@modelon.com" -VERSION = "3.5.2.dev0" if version_number_arg == "Default" else version_number_arg +VERSION = "3.6.0.dev0" if version_number_arg == "Default" else version_number_arg LICENSE = "LGPL" URL = "http://www.jmodelica.org/assimulo" DOWNLOAD_URL = "http://www.jmodelica.org/assimulo"