Skip to content

Commit 6fe5ef5

Browse files
author
Jonathan Holvey
committed
Convert beta release to production release
1 parent 8ed8b70 commit 6fe5ef5

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# SharePy changelog
22

3-
## v2.0.0 - January 2021
3+
## v2.0.0 - 5 February 2022
4+
5+
Previously released as v2.0.0-beta.1 in January 2021.
46

57
A major refactor of SharePy to provide a standard [Requests auth](https://requests.readthedocs.io/en/master/user/authentication/#new-forms-of-authentication) interface.
68

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ s = sharepy.SharePointSession("example.sharepoint.com", auth)
104104

105105
## Licence
106106

107-
This software is distributed under the GNU General Public License v3. Copyright 2016-2018 Jonathan Holvey.
107+
This software is distributed under the GNU General Public License v3. Copyright 2016-2021 Jonathan Holvey.
108108

109109
## Credits
110110

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
setup(
1414
name='sharepy',
15-
version='2.0.0-beta.1-2',
15+
version='2.0.0',
1616
description='Simple SharePoint Online authentication for Python',
1717
long_description=long_description,
1818
long_description_content_type='text/markdown',
@@ -25,7 +25,7 @@
2525
},
2626
license='GPLv3',
2727
classifiers=[
28-
'Development Status :: 4 - Beta',
28+
'Development Status :: 5 - Production/Stable',
2929
'Intended Audience :: Developers',
3030
'Topic :: Internet',
3131
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',

src/sharepy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '2.0.0-beta'
1+
__version__ = '2.0.0'
22

33
from .session import SharePointSession
44
from .session import connect

0 commit comments

Comments
 (0)