diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6dec5c95..43be08b8 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,9 @@ All notable changes to the kytos project will be documented in this file. UNRELEASED - Under development ****************************** +[2024.1.0] - 2024-07-23 +*********************** + Added ===== - Added in the ``pacer`` to the kytos controller. The ``pacer`` can be used by NApps to pace specific actions, at a specified ``pace`` using a specified ``strategy``. For more info see EP0038. NOTE: The only available strategy at this time is ``fixed_window``. @@ -13,7 +16,6 @@ Added Changed ======= - Updated python environment installation from 3.9 to 3.11 -- Updated test dependencies - MongoDB version has been updated to 7.0 - Queue buffers event handlers will now handle and log broad exceptions keeping the task execution alive - Raised the ``api`` threadpool workers to 512. diff --git a/docs/conf.py b/docs/conf.py index f924e90b..71a025e3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -64,10 +64,10 @@ # built documents. # # The short X.Y version. -version = u'2023.2.0' +version = u'2024.1.0' show_version = False # The full version, including alpha/beta/rc tags. -release = u'2023.2.0' +release = u'2024.1.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/kytos/core/metadata.py b/kytos/core/metadata.py index 546b83c1..4a353514 100644 --- a/kytos/core/metadata.py +++ b/kytos/core/metadata.py @@ -2,7 +2,7 @@ The present metadata is intended to be used mainly on the setup. """ -__version__ = '2023.2.0' +__version__ = '2024.1.0' __author__ = 'Kytos Team' __author_email__ = 'devel@lists.kytos.io' __license__ = 'MIT'