diff --git a/CHANGELOG.md b/CHANGELOG.md index aa00812..1a4a3cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -v0.5.0 (in development) ------------------------ +v0.5.0 (2023-12-17) +------------------- - When a 403 response is received with a `Retry-After` or `x-ratelimit-reset` header that would result in the next retry attempt being after `total_wait` is exceeded, don't retry. diff --git a/src/ghreq/__init__.py b/src/ghreq/__init__.py index 6afc9e9..e5be569 100644 --- a/src/ghreq/__init__.py +++ b/src/ghreq/__init__.py @@ -49,7 +49,7 @@ from typing import TYPE_CHECKING, Any, Literal, overload import requests -__version__ = "0.5.0.dev1" +__version__ = "0.5.0" __author__ = "John Thorvald Wodder II" __author_email__ = "ghreq@varonathe.org" __license__ = "MIT"