Skip to content

Commit

Permalink
Convert beta release to production release
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Holvey committed Feb 5, 2022
1 parent 8ed8b70 commit 6fe5ef5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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)',
Expand Down
2 changes: 1 addition & 1 deletion src/sharepy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '2.0.0-beta'
__version__ = '2.0.0'

from .session import SharePointSession
from .session import connect
Expand Down

0 comments on commit 6fe5ef5

Please sign in to comment.