diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f911a4..e03b6f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # SharePy changelog -## v2.0.0 - January 2021 +## v2.0.0 - 5 February 2022 + +Previously released as v2.0.0-beta.1 in January 2021. A major refactor of SharePy to provide a standard [Requests auth](https://requests.readthedocs.io/en/master/user/authentication/#new-forms-of-authentication) interface. diff --git a/README.md b/README.md index ebe3c46..c021b0e 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,7 @@ s = sharepy.SharePointSession("example.sharepoint.com", auth) ## Licence -This software is distributed under the GNU General Public License v3. Copyright 2016-2018 Jonathan Holvey. +This software is distributed under the GNU General Public License v3. Copyright 2016-2021 Jonathan Holvey. ## Credits diff --git a/setup.py b/setup.py index 4a75f6c..c56b7f1 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( name='sharepy', - version='2.0.0-beta.1-2', + version='2.0.0', description='Simple SharePoint Online authentication for Python', long_description=long_description, long_description_content_type='text/markdown', @@ -25,7 +25,7 @@ }, license='GPLv3', classifiers=[ - 'Development Status :: 4 - Beta', + 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'Topic :: Internet', 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', diff --git a/src/sharepy/__init__.py b/src/sharepy/__init__.py index 7c14892..0af5057 100644 --- a/src/sharepy/__init__.py +++ b/src/sharepy/__init__.py @@ -1,4 +1,4 @@ -__version__ = '2.0.0-beta' +__version__ = '2.0.0' from .session import SharePointSession from .session import connect