diff --git a/CHANGELOG.md b/CHANGELOG.md index f6a2802..cff1500 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change log +## 0.8.1 + +- Function parameters no longer format to snake_case to maintain consistency with the OpenAPI schema. + ## 0.8.0 - Improved support for Async clients which prevents a weird bug when running more than one event loop. Based on the suggestions from [this httpx issue](https://github.com/encode/httpcore/discussions/659). diff --git a/clientele/settings.py b/clientele/settings.py index f3e52e1..7fff80d 100644 --- a/clientele/settings.py +++ b/clientele/settings.py @@ -1,6 +1,6 @@ import platform -VERSION = "0.8.0" +VERSION = "0.8.1" def split_ver(): diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index f6a2802..cff1500 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,9 @@ # Change log +## 0.8.1 + +- Function parameters no longer format to snake_case to maintain consistency with the OpenAPI schema. + ## 0.8.0 - Improved support for Async clients which prevents a weird bug when running more than one event loop. Based on the suggestions from [this httpx issue](https://github.com/encode/httpcore/discussions/659). diff --git a/docs/install.md b/docs/install.md index 99da4b0..3b74f3f 100644 --- a/docs/install.md +++ b/docs/install.md @@ -10,5 +10,5 @@ Once installed you can run `clientele version` to make sure you have the latest ```sh > clientele version -clientele 0.8.0 +clientele 0.8.1 ``` diff --git a/docs/usage.md b/docs/usage.md index 71a1187..35a304a 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -102,5 +102,5 @@ Print the current version of Clientele: ```sh > clientele version -Clientele 0.8.0 +Clientele 0.8.1 ``` diff --git a/pyproject.toml b/pyproject.toml index a825663..30dd5e6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "clientele" -version = "0.8.0" +version = "0.8.1" description = "Generate loveable Python HTTP API Clients" authors = ["Paul Hallett "] license = "MIT" diff --git a/tests/async_test_client/MANIFEST.md b/tests/async_test_client/MANIFEST.md index b38f7d1..8549735 100644 --- a/tests/async_test_client/MANIFEST.md +++ b/tests/async_test_client/MANIFEST.md @@ -9,7 +9,7 @@ pipx install clientele API VERSION: 0.1.0 OPENAPI VERSION: 3.0.2 -CLIENTELE VERSION: 0.8.0 +CLIENTELE VERSION: 0.8.1 Regnerate using this command: diff --git a/tests/test_client/MANIFEST.md b/tests/test_client/MANIFEST.md index 6f2e16b..8fc1a9b 100644 --- a/tests/test_client/MANIFEST.md +++ b/tests/test_client/MANIFEST.md @@ -9,7 +9,7 @@ pipx install clientele API VERSION: 0.1.0 OPENAPI VERSION: 3.0.2 -CLIENTELE VERSION: 0.8.0 +CLIENTELE VERSION: 0.8.1 Regnerate using this command: