From 0e475784a7813a1dd620f488a17c67eb468d8cb1 Mon Sep 17 00:00:00 2001 From: Vinicius Arcanjo Date: Mon, 5 Jun 2023 18:33:31 -0300 Subject: [PATCH] release: bumped 2023.1.0 --- CHANGELOG.rst | 13 ++----------- docs/conf.py | 4 ++-- pyof/__init__.py | 2 +- 3 files changed, 5 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1f025562..6ff02d81 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,22 +6,13 @@ All notable changes to the `python-openflow` project are documented in this file [UNRELEASED] - Under development ******************************** -Added -===== - -Changed -======= - -Removed -======= +[2023.1.0] - 2023-06-05 +*********************** Fixed ===== - Made a shallow copy of ``__dict__`` when iterating over class attributes to fix potential ``RuntimeError`` -Security - - [2022.3.0] - 2023-01-23 *********************** diff --git a/docs/conf.py b/docs/conf.py index cb317153..34ef03cc 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -65,10 +65,10 @@ # built documents. # # The short X.Y version. -version = u'2022.3.0' +version = u'2023.1.0' show_version = False # The full version, including alpha/beta/rc tags. -release = u'2022.3.0' +release = u'2023.1.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pyof/__init__.py b/pyof/__init__.py index 239ff3a1..a143c795 100644 --- a/pyof/__init__.py +++ b/pyof/__init__.py @@ -3,4 +3,4 @@ This package is a library that parses and creates OpenFlow Messages. It contains all implemented versions of OpenFlow protocol """ -__version__ = '2022.3.0' +__version__ = '2023.1.0'