diff --git a/CHANGELOG.md b/CHANGELOG.md index c01ec78..4c8c657 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -v0.2.0 (in development) ------------------------ +v0.2.0 (2023-11-03) +------------------- - The `version` argument to `make_user_agent()` is now optional - The `url` argument to `make_user_agent()` is now actually optional diff --git a/src/ghreq/__init__.py b/src/ghreq/__init__.py index 849cc4d..1aaa03c 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.2.0.dev1" +__version__ = "0.2.0" __author__ = "John Thorvald Wodder II" __author_email__ = "ghreq@varonathe.org" __license__ = "MIT"