diff --git a/CHANGELOG.md b/CHANGELOG.md index cce6d9e..b211aab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 3.1.0 (2026-03-10) + +### Feat + +- Requests towards the github API are now retried on 5xx +- Forward kwargs to `request`. This allows passing headers/other params to the + underlying client + ## 3.0.0 (2026-02-10) ### Fix diff --git a/pyproject.toml b/pyproject.toml index f3557c4..675b28c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "simple-github" description = "A simple Github client that only provides auth and access to the REST and GraphQL APIs." -version = "3.0.0" +version = "3.1.0" authors = [ { name = "Mozilla Release Engineering", email = "release+simple-github@mozilla.com"} ] diff --git a/uv.lock b/uv.lock index c543872..3006b0d 100644 --- a/uv.lock +++ b/uv.lock @@ -1623,7 +1623,7 @@ wheels = [ [[package]] name = "simple-github" -version = "3.0.0" +version = "3.1.0" source = { editable = "." } dependencies = [ { name = "aiohttp", extra = ["speedups"] },