diff --git a/CHANGELOG.md b/CHANGELOG.md index 30eb5a1..46f9f3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -v0.3.0 (in development) ------------------------ +v0.3.0 (2023-11-10) +------------------- - A session-wide `Accept` header can now be specified when constructing a `Client` without having to use a custom `Session` - Added a `headers` argument to the `Client` constructor for setting arbitrary diff --git a/src/ghreq/__init__.py b/src/ghreq/__init__.py index df13533..09be1d4 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.3.0.dev1" +__version__ = "0.3.0" __author__ = "John Thorvald Wodder II" __author_email__ = "ghreq@varonathe.org" __license__ = "MIT"