From 6e91e485c08cf362f2eace85ad1ed52d93d945dd Mon Sep 17 00:00:00 2001 From: Quinten Stokkink Date: Fri, 25 Jun 2021 15:48:45 +0200 Subject: [PATCH] Automated version increment --- doc/conf.py | 4 ++-- ipv8/REST/rest_manager.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 96e5eef46..a4470eb5d 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -26,9 +26,9 @@ author = u'Tribler' # The short X.Y version -version = '2.6' # Do not change manually! Handled by github_increment_version.py +version = '2.7' # Do not change manually! Handled by github_increment_version.py # The full version, including alpha/beta/rc tags -release = '2.6.0' # Do not change manually! Handled by github_increment_version.py +release = '2.7.0' # Do not change manually! Handled by github_increment_version.py # -- General configuration --------------------------------------------------- diff --git a/ipv8/REST/rest_manager.py b/ipv8/REST/rest_manager.py index 7255dedf9..b98ff6e8a 100644 --- a/ipv8/REST/rest_manager.py +++ b/ipv8/REST/rest_manager.py @@ -84,7 +84,7 @@ async def start(self, port=8085, host='127.0.0.1', api_key=None, ssl_context=Non aiohttp_apispec = AiohttpApiSpec( app=self.root_endpoint.app, title="IPv8 REST API documentation", - version="v2.6", # Do not change manually! Handled by github_increment_version.py + version="v2.7", # Do not change manually! Handled by github_increment_version.py url="/docs/swagger.json", swagger_path="/docs", ) diff --git a/setup.py b/setup.py index 789518bff..a863947d8 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ description='The Python implementation of the IPV8 library', long_description=long_description, long_description_content_type='text/markdown', - version='2.6.0', # Do not change manually! Handled by github_increment_version.py + version='2.7.0', # Do not change manually! Handled by github_increment_version.py url='https://github.com/Tribler/py-ipv8', package_data={'': ['*.*']}, packages=find_packages(),