Skip to content

Commit 29616e6

Browse files
authored
Merge pull request #16 from fastapi-mvc/update_dependencies
Update dependencies
2 parents 4564a5b + 87836ff commit 29616e6

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ This file documents changes to [fastapi-mvc/copier-project](https://github.com/f
99
* Pin nix version in nix-install-action in templated nix workflow [6b4a13c](https://github.com/fastapi-mvc/copier-project/commit/6b4a13ca08b2590a6003ab46a5ef27ac1b139341).
1010
* Pin nix version in nix-install-action [8106966](https://github.com/fastapi-mvc/copier-project/commit/8106966aaaf40bdcee76079e4a4842128148dcbb).
1111
* Update generator with changes from [copier-generator](https://github.com/fastapi-mvc/copier-generator) 0.2.0 release. PR [#14](https://github.com/fastapi-mvc/copier-project/pull/14)
12+
* Update project dependencies. PR [#16](https://github.com/fastapi-mvc/copier-project/pull/16)
13+
* Bump fastapi from 0.89.1 to 0.92.0.
14+
* Bump myst-parser from 0.18.1 to 0.19.0.
15+
* Bump redis from 4.4.2 to 4.5.1.
16+
* Bump flake8-docstrings from 1.6.0 to 1.7.0.
17+
* Bump aiohttp from 3.8.3 to 3.8.4.
1218

1319
## 0.4.0 (07.02.2023)
1420

template/README.md.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
[![K8s integration]({{repo_url}}/actions/workflows/integration.yml/badge.svg)]({{repo_url}}/actions/workflows/integration.yml)
88
{%- endif %}
99
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
10-
![GitHub](https://img.shields.io/badge/fastapi-v.0.89.1-blue)
10+
![GitHub](https://img.shields.io/badge/fastapi-v.0.92.0-blue)
1111
![GitHub](https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11-blue)
1212
![GitHub](https://img.shields.io/badge/license-{{license}}-blue)
1313

template/pyproject.toml.jinja

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ classifiers = [
1818

1919
[tool.poetry.dependencies]
2020
python = "^3.8"
21-
fastapi = "~0.89.1"
21+
fastapi = "~0.92.0"
2222
uvicorn = {extras = ["standard"], version = "~0.20.0"}
2323
gunicorn = "~20.1.0"
2424
click = "~8.1.3"
2525
{%- if redis %}
26-
redis = "~4.4.0"
26+
redis = "~4.5.1"
2727
{%- endif %}
2828
{%- if aiohttp %}
29-
aiohttp = "~3.8.3"
29+
aiohttp = "~3.8.4"
3030
{%- endif %}
3131

3232
[tool.poetry.dev-dependencies]
@@ -39,13 +39,13 @@ httpx = "~0.23.3"
3939
aioresponses = "~0.7.3"
4040
{%- endif %}
4141
flake8 = "~5.0.4"
42-
flake8-docstrings = "~1.6.0"
42+
flake8-docstrings = "~1.7.0"
4343
flake8-import-order = "~0.18.1"
4444
flake8-todo = "^0.7"
4545
black = "~23.1.0"
4646
Sphinx = "~5.3.0"
4747
Pallets-Sphinx-Themes = "~2.0.2"
48-
myst-parser = "~0.18.1"
48+
myst-parser = "~0.19.0"
4949

5050
[tool.poetry.scripts]
5151
{{script_name}} = '{{package_name}}.cli:cli'

0 commit comments

Comments
 (0)