SemVer
This commit is contained in:
parent
caf2b1933e
commit
490a68982a
3 changed files with 7 additions and 8 deletions
|
@ -62,10 +62,10 @@ if testserv != None:
|
|||
|v0.3|Implemented files API, added typization.|
|
||||
|v0.4|Implemented configuration API, some bugfixes.|
|
||||
|v0.5|The API was updated corresponding to new Aternos security methods. Huge thanks to [lusm554](https://github.com/lusm554).|
|
||||
|v0.6|Code refactoring, websockets API and session saving to prevent detecting automation access.|
|
||||
|v0.7|Full implementation of config and software API, unit tests and documentation is planned.|
|
||||
|v0.8|Shared access API and Google Drive backups is planned.|
|
||||
|v0.9.x|A long debugging before stable release, SemVer version code.|
|
||||
|v0.6/v1.0.0|Code refactoring, websockets API and session saving to prevent detecting automation access.|
|
||||
|v1.0.1|Cloudflare bypassing fix, changed versioning (follows SemVer).|
|
||||
|v1.1.x|Full implementation of config and software API, unit tests and documentation is planned.|
|
||||
|v1.2.x|Shared access API and Google Drive backups is planned.|
|
||||
|
||||
## License
|
||||
[License Notice](NOTICE):
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
lxml>=4.8.0
|
||||
requests>=2.25.1
|
||||
cloudscraper>=1.2.58
|
||||
js2py>=0.71
|
||||
websockets>=10.1
|
||||
|
|
6
setup.py
6
setup.py
|
@ -5,7 +5,7 @@ with open('README.md', 'rt') as readme:
|
|||
|
||||
setuptools.setup(
|
||||
name='python-aternos',
|
||||
version='0.6',
|
||||
version='1.0.1',
|
||||
author='Chechkenev Andrey (@DarkCat09)',
|
||||
author_email='aacd0709@mail.ru',
|
||||
description='An unofficial Aternos API',
|
||||
|
@ -13,7 +13,8 @@ setuptools.setup(
|
|||
long_description_content_type='text/markdown',
|
||||
url='https://github.com/DarkCat09/python-aternos',
|
||||
project_urls={
|
||||
'Bug Tracker': 'https://github.com/DarkCat09/python-aternos/issues'
|
||||
'Bug Tracker': 'https://github.com/DarkCat09/python-aternos/issues',
|
||||
'Alternative Repo': 'https://codeberg.org/DarkCat09/python-aternos'
|
||||
},
|
||||
classifiers=[
|
||||
'Development Status :: 4 - Beta',
|
||||
|
@ -23,7 +24,6 @@ setuptools.setup(
|
|||
],
|
||||
install_requires=[
|
||||
'lxml>=4.8.0',
|
||||
'requests>=2.25.1',
|
||||
'cloudscraper>=1.2.58',
|
||||
'js2py>=0.71',
|
||||
'websockets>=10.1',
|
||||
|
|
Reference in a new issue