Skip to content

Commit

Permalink
0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Hallett committed Oct 25, 2023
1 parent 02bda73 commit 668bd50
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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).
Expand Down
2 changes: 1 addition & 1 deletion clientele/settings.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import platform

VERSION = "0.8.0"
VERSION = "0.8.1"


def split_ver():
Expand Down
4 changes: 4 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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).
Expand Down
2 changes: 1 addition & 1 deletion docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
2 changes: 1 addition & 1 deletion docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,5 +102,5 @@ Print the current version of Clientele:

```sh
> clientele version
Clientele 0.8.0
Clientele 0.8.1
```
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <paulandrewhallett@gmail.com>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion tests/async_test_client/MANIFEST.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
2 changes: 1 addition & 1 deletion tests/test_client/MANIFEST.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down

0 comments on commit 668bd50

Please sign in to comment.