Skip to content

Commit d9fd3a3

Browse files
authored
Merge branch 'main' into patch-1
2 parents 9ff3781 + 2aeaa38 commit d9fd3a3

File tree

11 files changed

+46
-51
lines changed

11 files changed

+46
-51
lines changed

.github/workflows/checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@v3
1818
- name: Set up Python
19-
uses: actions/setup-python@v3
19+
uses: actions/setup-python@v4
2020
with:
2121
python-version: ${{ matrix.python }}
2222

@@ -82,7 +82,7 @@ jobs:
8282
steps:
8383
- uses: actions/checkout@v3
8484
- name: Set up Python
85-
uses: actions/setup-python@v3
85+
uses: actions/setup-python@v4
8686
with:
8787
python-version: "3.10"
8888
- name: Get Python Version

.github/workflows/pythonpublish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v3
1212
- name: Set up Python
13-
uses: actions/setup-python@v3
13+
uses: actions/setup-python@v4
1414
with:
1515
python-version: '3.x'
1616
- name: Install dependencies

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,16 @@ Programmatic usage of this project (e.g., importing it as a Python module) and t
1313

1414
The 0.x prefix used in versions for this project is to indicate that breaking changes are expected frequently (several times a year). Breaking changes will increment the minor number, all other changes will increment the patch number. You can track the progress toward 1.0 [here](https://github.com/openapi-generators/openapi-python-client/projects/2).
1515

16+
## 0.11.2
17+
18+
### Features
19+
20+
- Allow httpx 0.23.x (#617)
21+
22+
### Fixes
23+
24+
- typos in generated README (#586). Thanks @adelevie!
25+
1626
## 0.11.1
1727

1828
### Features

end_to_end_tests/golden-record/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ include = ["CHANGELOG.md", "my_test_api_client/py.typed"]
1313

1414
[tool.poetry.dependencies]
1515
python = "^3.7"
16-
httpx = ">=0.15.4,<0.23.0"
16+
httpx = ">=0.15.4,<0.24.0"
1717
attrs = ">=21.3.0"
1818
python-dateutil = "^2.8.0"
1919

integration-tests/poetry.lock

Lines changed: 11 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

integration-tests/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ include = ["CHANGELOG.md", "open_api_test_server_client/py.typed"]
1111

1212
[tool.poetry.dependencies]
1313
python = "^3.7"
14-
httpx = ">=0.15.4,<0.23.0"
14+
httpx = ">=0.15.4,<0.24.0"
1515
attrs = ">=21.3.0"
1616
python-dateutil = "^2.8.0"
1717

dobby.toml renamed to knope.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ name = "task"
99
[[workflows]]
1010
name = "release"
1111
[[workflows.steps]]
12-
type = "UpdateProjectFromCommits"
12+
type = "PrepareRelease"
1313

1414
[[workflows.steps]]
1515
type = "Command"
1616
command = "npx prettier --write CHANGELOG.md"
1717

1818
[github]
19-
owner = "triaxtec"
19+
owner = "openapi-generators"
2020
repo = "openapi-python-client"

openapi_python_client/templates/pyproject.toml.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ include = ["CHANGELOG.md", "{{ package_name }}/py.typed"]
1414

1515
[tool.poetry.dependencies]
1616
python = "^3.7"
17-
httpx = ">=0.15.4,<0.23.0"
17+
httpx = ">=0.15.4,<0.24.0"
1818
attrs = ">=21.3.0"
1919
python-dateutil = "^2.8.0"
2020

openapi_python_client/templates/setup.py.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ setup(
1313
long_description_content_type="text/markdown",
1414
packages=find_packages(),
1515
python_requires=">=3.7, <4",
16-
install_requires=["httpx >= 0.15.0, < 0.23.0", "attrs >= 21.3.0", "python-dateutil >= 2.8.0, < 3"],
16+
install_requires=["httpx >= 0.15.0, < 0.24.0", "attrs >= 21.3.0", "python-dateutil >= 2.8.0, < 3"],
1717
package_data={"{{ package_name }}": ["py.typed"]},
1818
)

poetry.lock

Lines changed: 14 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "openapi-python-client"
3-
version = "0.11.1"
3+
version = "0.11.2"
44
description = "Generate modern Python clients from OpenAPI"
55
repository = "https://github.com/triaxtec/openapi-python-client"
66
license = "MIT"
@@ -30,7 +30,7 @@ importlib_metadata = {version = ">2,<5", python = "<3.8"}
3030
pydantic = "^1.6.1"
3131
attrs = ">=21.3.0"
3232
python-dateutil = "^2.8.1"
33-
httpx = ">=0.15.4,<0.23.0"
33+
httpx = ">=0.15.4,<0.24.0"
3434
autoflake = "^1.4"
3535
typing-extensions = { version = "*", python = "<3.8" }
3636
PyYAML = "^6.0"

0 commit comments

Comments
 (0)