diff --git a/CHANGES.rst b/CHANGES.rst index 75464915..af94cfb8 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,8 +3,8 @@ Change Log Async PRAW follows `semantic versioning `_. -Unreleased ----------- +7.7.1 (2023/07/11) +------------------ **Changed** diff --git a/asyncpraw/const.py b/asyncpraw/const.py index 1da4ac24..79dbdb1a 100644 --- a/asyncpraw/const.py +++ b/asyncpraw/const.py @@ -1,7 +1,7 @@ """Async PRAW constants.""" from .endpoints import API_PATH # noqa: F401 -__version__ = "7.7.1.dev0" +__version__ = "7.7.1" USER_AGENT_FORMAT = f"{{}} Async PRAW/{__version__}"