Skip to content

Commit

Permalink
bump version 5.0.25rc0 -> 5.0.26rc0
Browse files Browse the repository at this point in the history
  • Loading branch information
igormcoelho committed Jun 22, 2023
1 parent dadbcca commit 74e579c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Development repo for draft versions of Python bindings for OptFrame Functional C

Install: `python -m pip install optframe`

Version: `pyoptframe v5.0.25rc0`
Version: `pyoptframe v5.0.26rc0`

Play on Jupyter Notebook: [BRKGA Traveling Salesman Problem Example](demo/OptFrame_BRKGA_Official.ipynb)

Expand Down
2 changes: 1 addition & 1 deletion bumpver.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpver]
current_version = "5.0.25rc0"
current_version = "5.0.26rc0"
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Igor Machado Coelho'

# The full version, including alpha/beta/rc tags
release = 'v5.0.25rc0'
release = 'v5.0.26rc0'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion optframe/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '5.0.25rc0'
__version__ = '5.0.26rc0'
# only useful stuff for root level here!
from optframe.engine import Engine
from optframe.engine import APILevel
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "optframe"
version = "5.0.25rc0"
version = "5.0.26rc0"
description = "Python bindings for OptFrame Functional Core"
readme = "README.md"
authors = [{ name = "Igor Machado Coelho", email = "[email protected]" }]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def get_ext_filename(self, ext_name):

setup(
name="optframe",
version="5.0.25rc0",
version="5.0.26rc0",
py_modules=["optframe.components","optframe.core","optframe.engine","optframe.heuristics","optframe.protocols"],
ext_modules=[
CTypesExtension(
Expand Down

0 comments on commit 74e579c

Please sign in to comment.