summaryrefslogtreecommitdiff
path: root/oauthlib/__init__.py
diff options
context:
space:
mode:
authorJonathan Huot <JonathanHuot@users.noreply.github.com>2019-01-07 22:19:17 +0100
committerGitHub <noreply@github.com>2019-01-07 22:19:17 +0100
commit9dfa40c3bdab3aa788e711283afdf36c2fbdd1de (patch)
tree77690d2dcdd22050e04f45205ab6514a2cde72ff /oauthlib/__init__.py
parentb79b5511b01c230037abee5b636f6f03378c93f1 (diff)
parentfa0b1549546d8c7dc1045ea637a8f8afd0d39a83 (diff)
downloadoauthlib-9dfa40c3bdab3aa788e711283afdf36c2fbdd1de.tar.gz
Merge pull request #639 from oauthlib/3-releasev3.0.0
3.0.0 ChangeLog release
Diffstat (limited to 'oauthlib/__init__.py')
-rw-r--r--oauthlib/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/oauthlib/__init__.py b/oauthlib/__init__.py
index 5b1b380..b37d288 100644
--- a/oauthlib/__init__.py
+++ b/oauthlib/__init__.py
@@ -5,13 +5,13 @@
A generic, spec-compliant, thorough implementation of the OAuth
request-signing logic.
- :copyright: (c) 2018 by The OAuthlib Community
+ :copyright: (c) 2019 by The OAuthlib Community
:license: BSD, see LICENSE for details.
"""
import logging
from logging import NullHandler
__author__ = 'The OAuthlib Community'
-__version__ = '3.0.0-dev'
+__version__ = '3.0.0'
logging.getLogger('oauthlib').addHandler(NullHandler())