diff --git a/doc/source/changelog.rst b/doc/source/changelog.rst index 28c99ce6e..b497aac4e 100644 --- a/doc/source/changelog.rst +++ b/doc/source/changelog.rst @@ -6,6 +6,7 @@ Changelog .. toctree:: :maxdepth: 1 + changes/3.11.9 changes/3.11.6 changes/3.11.5 changes/3.11.4 diff --git a/doc/source/changes/3.11.8.rst b/doc/source/changes/3.11.9.rst similarity index 89% rename from doc/source/changes/3.11.8.rst rename to doc/source/changes/3.11.9.rst index 62d1f55fc..b3337823f 100644 --- a/doc/source/changes/3.11.8.rst +++ b/doc/source/changes/3.11.9.rst @@ -1,4 +1,4 @@ -v3.11.8 +v3.11.9 ======= qibuild diff --git a/doc/source/conf.in.py b/doc/source/conf.in.py index 90c2ec51c..ceb4574b9 100644 --- a/doc/source/conf.in.py +++ b/doc/source/conf.in.py @@ -3,7 +3,7 @@ ## found in the COPYING file. project = u'qiBuild' -version = '3.11.6' +version = '3.11.9' release = version sys.path.insert(0, os.path.abspath('../tools')) # for autodoc diff --git a/python/qisys/main.py b/python/qisys/main.py index 965835995..39c1682bd 100644 --- a/python/qisys/main.py +++ b/python/qisys/main.py @@ -12,7 +12,7 @@ import qisys.script def print_version(script_name): - sys.stdout.write("%s version 3.11.6\n" % script_name) + sys.stdout.write("%s version 3.11.9\n" % script_name) import qibuild qibuild_dir = os.path.dirname(qibuild.__file__) python_dir = os.path.dirname(qibuild_dir) diff --git a/setup.py b/setup.py index 96872fec3..280dd543c 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ def get_qibuild_cmake_files(): data_files = get_qibuild_cmake_files() setup(name="qibuild", - version="3.11.6", + version="3.11.9", description="The meta build framework", url="http://doc.aldebaran.com/qibuild", author="Aldebaran Robotics",