diff --git a/CHANGES.rst b/CHANGES.rst index 51cc52d..e42e31b 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,8 +4,8 @@ Change Log asyncprawcore follows `semantic versioning `_ with the exception that deprecations will not be announced by a minor release. -Unreleased ----------- +2.0.0 (2021-02-23) +------------------ **Added** diff --git a/asyncprawcore/const.py b/asyncprawcore/const.py index fc9e5ad..450c123 100644 --- a/asyncprawcore/const.py +++ b/asyncprawcore/const.py @@ -1,7 +1,7 @@ """Constants for the asyncprawcore package.""" import os -__version__ = "1.5.1" +__version__ = "2.0.0" ACCESS_TOKEN_PATH = "/api/v1/access_token" AUTHORIZATION_PATH = "/api/v1/authorize"