Skip to content

Commit

Permalink
Merge pull request #95 from kytos-ng/release/2024.1
Browse files Browse the repository at this point in the history
release: bumped 2024.1.0
  • Loading branch information
viniarck authored Aug 16, 2024
2 parents 3889f30 + a4156b2 commit 3b59284
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
***********************
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion pyof/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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."""
Expand Down

0 comments on commit 3b59284

Please sign in to comment.