Skip to content

Commit 27f5d87

Browse files
authored
Merge pull request #966 from qstokkink/automated_version_update
Automated Version Update
2 parents 76da077 + 0a07ce7 commit 27f5d87

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

doc/conf.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
# full list see the documentation:
77
# http://www.sphinx-doc.org/en/master/config
88

9+
# pylint: disable=W0622
10+
911
# -- Path setup --------------------------------------------------------------
1012

1113
# If extensions (or modules to document with autodoc) are in another directory,
@@ -20,13 +22,13 @@
2022
# -- Project information -----------------------------------------------------
2123

2224
project = u'IPv8'
23-
copyright = '2017-2020, Tribler' # Do not change manually! Handled by github_increment_version.py
25+
copyright = '2017-2021, Tribler' # Do not change manually! Handled by github_increment_version.py
2426
author = u'Tribler'
2527

2628
# The short X.Y version
27-
version = '2.5' # Do not change manually! Handled by github_increment_version.py
29+
version = '2.6' # Do not change manually! Handled by github_increment_version.py
2830
# The full version, including alpha/beta/rc tags
29-
release = '2.5.0' # Do not change manually! Handled by github_increment_version.py
31+
release = '2.6.0' # Do not change manually! Handled by github_increment_version.py
3032

3133

3234
# -- General configuration ---------------------------------------------------

ipv8/REST/rest_manager.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ async def start(self, port=8085, host='127.0.0.1', api_key=None, ssl_context=Non
8484
aiohttp_apispec = AiohttpApiSpec(
8585
app=self.root_endpoint.app,
8686
title="IPv8 REST API documentation",
87-
version="v2.5", # Do not change manually! Handled by github_increment_version.py
87+
version="v2.6", # Do not change manually! Handled by github_increment_version.py
8888
url="/docs/swagger.json",
8989
swagger_path="/docs",
9090
)

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
description='The Python implementation of the IPV8 library',
1010
long_description=long_description,
1111
long_description_content_type='text/markdown',
12-
version='2.5.0', # Do not change manually! Handled by github_increment_version.py
12+
version='2.6.0', # Do not change manually! Handled by github_increment_version.py
1313
url='https://github.com/Tribler/py-ipv8',
1414
package_data={'': ['*.*']},
1515
packages=find_packages(),

0 commit comments

Comments
 (0)