From 9db7b591df2c439058619f794f34be98ea750cc4 Mon Sep 17 00:00:00 2001 From: LilSpazJoekp Date: Tue, 11 Jul 2023 21:06:09 +0000 Subject: [PATCH] Bump to v7.7.1 --- CHANGES.rst | 4 ++-- asyncpraw/const.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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__}"