From 547ed531d40cac2f0b08ce440c94eac273bd008a Mon Sep 17 00:00:00 2001 From: Vinicius Arcanjo Date: Wed, 24 Jul 2024 09:01:57 -0300 Subject: [PATCH 1/2] release: bumped 2024.1.0 --- CHANGELOG.rst | 4 +++- docs/conf.py | 4 ++-- pyof/__init__.py | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a512f831..a55dbdfd 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,10 +6,12 @@ All notable changes to the `python-openflow` project are documented in this file [UNRELEASED] - Under development ******************************** +[2024.1.0] - 2024-07-23 +*********************** + Changed ======= - Updated python environment installation from 3.9 to 3.11 -- Updated test dependencies [2023.2.0] - 2024-02-16 *********************** diff --git a/docs/conf.py b/docs/conf.py index c52f5b9e..1a1a328b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -65,10 +65,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/pyof/__init__.py b/pyof/__init__.py index b25c577f..f7426761 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__ = '2023.2.0' +__version__ = '2024.1.0' From a4156b2662c92cca5d670f44a534bd384bbe7921 Mon Sep 17 00:00:00 2001 From: Vinicius Arcanjo Date: Fri, 16 Aug 2024 16:53:39 -0300 Subject: [PATCH 2/2] chore: linter fix --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 5c456af8..7b36a526 100644 --- a/setup.py +++ b/setup.py @@ -34,9 +34,9 @@ def run(self): Use *call* instead of *check_call* to ignore failures. """ - def run_command(self, command_class): + def run_command(self, command): """Run another command with same __init__ arguments.""" - command_class(*self.__args, **self.__kwargs).run() + command(*self.__args, **self.__kwargs).run() def initialize_options(self): """Set default values for options."""