diff --git a/CHANGES.rst b/CHANGES.rst index e6c413a..7d9e6a0 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,12 @@ Change Log prawcore follows `semantic versioning `_ with the exception that deprecations will not be announced by a minor release. +1.5.0 (2020-08-04) +------------------ + +**Changed** + +* Drop support for Python 3.5, which is end-of-life on 2020-09-13. 1.4.0 (2020-05-28) ------------------ diff --git a/prawcore/const.py b/prawcore/const.py index 15acba5..65cd0f3 100644 --- a/prawcore/const.py +++ b/prawcore/const.py @@ -1,7 +1,7 @@ """Constants for the prawcore package.""" import os -__version__ = "1.4.0" +__version__ = "1.5.0" ACCESS_TOKEN_PATH = "/api/v1/access_token" AUTHORIZATION_PATH = "/api/v1/authorize"