diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d2946ea5..b9da1f80 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 ****************************** +[2023.2.0] - 2024-02-16 +*********************** + Added ===== - Added ``Interface.tag_ranges`` as ``dict[str, list[list[int]]]`` as replacement for ``vlan_pool`` settings. diff --git a/docs/conf.py b/docs/conf.py index bb08f070..f924e90b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -64,10 +64,10 @@ # built documents. # # The short X.Y version. -version = u'2023.1.0' +version = u'2023.2.0' show_version = False # The full version, including alpha/beta/rc tags. -release = u'2023.1.0' +release = u'2023.2.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 870af755..546b83c1 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.1.0' +__version__ = '2023.2.0' __author__ = 'Kytos Team' __author_email__ = 'devel@lists.kytos.io' __license__ = 'MIT'