Skip to content

Commit

Permalink
Merge pull request #1150 from qstokkink/automated_version_update
Browse files Browse the repository at this point in the history
Automated Version Update
  • Loading branch information
qstokkink authored Jul 10, 2023
2 parents 8fdc4a7 + 09b308f commit 066f932
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
author = u'Tribler'

# The short X.Y version
version = '2.10' # Do not change manually! Handled by github_increment_version.py
version = '2.11' # Do not change manually! Handled by github_increment_version.py
# The full version, including alpha/beta/rc tags
release = '2.10.0' # Do not change manually! Handled by github_increment_version.py
release = '2.11.0' # Do not change manually! Handled by github_increment_version.py


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion github_increment_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ def modify_rest_manager(file_contents, element, new_version_tag):
username = input('Username: ')
token = getpass.getpass(prompt='Token (needs public_repo access, no token? visit https://github.com/settings/tokens): ', stream=None)

github = Github(token, client_id=username, client_secret=token)
github = Github(token)

# GET REPOSITORY REFERENCES
print("[4/8] Retrieving Tribler:py-ipv8 and %s:py-ipv8" % username)
Expand Down
2 changes: 1 addition & 1 deletion ipv8/REST/rest_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.10", # Do not change manually! Handled by github_increment_version.py
version="v2.11", # Do not change manually! Handled by github_increment_version.py
url="/docs/swagger.json",
swagger_path="/docs",
)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
description='The Python implementation of the IPV8 library',
long_description=long_description,
long_description_content_type='text/markdown',
version='2.10.0', # Do not change manually! Handled by github_increment_version.py
version='2.11.0', # Do not change manually! Handled by github_increment_version.py
url='https://github.com/Tribler/py-ipv8',
package_data={'': ['*.*']},
packages=find_packages(),
Expand Down

0 comments on commit 066f932

Please sign in to comment.