From ea41739927a975442c7bcdeb28078e676087c614 Mon Sep 17 00:00:00 2001 From: Quinten Stokkink Date: Mon, 23 Jan 2023 11:26:42 +0100 Subject: [PATCH] Automated version increment --- doc/conf.py | 6 +++--- ipv8/REST/rest_manager.py | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 015d10db4..523e37913 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -22,13 +22,13 @@ # -- Project information ----------------------------------------------------- project = u'IPv8' -copyright = '2017-2022, Tribler' # Do not change manually! Handled by github_increment_version.py +copyright = '2017-2023, Tribler' # Do not change manually! Handled by github_increment_version.py author = u'Tribler' # The short X.Y version -version = '2.9' # Do not change manually! Handled by github_increment_version.py +version = '2.10' # Do not change manually! Handled by github_increment_version.py # The full version, including alpha/beta/rc tags -release = '2.9.0' # Do not change manually! Handled by github_increment_version.py +release = '2.10.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 eb4eb8f14..83cb715f8 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.9", # Do not change manually! Handled by github_increment_version.py + version="v2.10", # 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 fb56cf658..927e855ab 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.9.0', # Do not change manually! Handled by github_increment_version.py + version='2.10.0', # Do not change manually! Handled by github_increment_version.py url='https://github.com/Tribler/py-ipv8', package_data={'': ['*.*']}, packages=find_packages(),