File tree 6 files changed +21
-8
lines changed
{{cookiecutter.project_slug}}
6 files changed +21
-8
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
10
10
### Added
11
11
- Placeholder for future updates and new features.
12
12
13
+
14
+ ## [ 1.1.2] - 2025-03-14
15
+
16
+ ### Changed
17
+ - Updated project version from ` 1.1.1 ` to ` 1.1.2 ` in ` pyproject.toml ` .
18
+ - Updated ` ruff ` pre-commit hook from ` v0.9.10 ` to ` v0.11.0 ` in ` .pre-commit-config.yaml ` .
19
+ - Updated ` ruff ` dependency in ` environment-dev.yml ` from ` >=0.9.7 ` to ` >=0.11.0 ` .
20
+ - Updated ` pytest ` from ` ^8.3.4 ` to ` ^8.3.5 ` in ` pyproject.toml ` .
21
+ - Updated ` ruff ` from ` ^0.9.7 ` to ` ^0.11.0 ` in ` pyproject.toml ` .
22
+ - Updated ` black ` from ` ~22.10 ` to ` ~25.1.0 ` in ` requirements-dev.txt ` .
23
+ - Updated ` pytest ` from ` ~8.3 ` to ` ~8.3.5 ` in ` requirements-dev.txt ` .
24
+ - Updated ` wheel ` from ` ~0.37 ` to ` ~0.45.1 ` in ` requirements-dev.txt ` .
25
+
13
26
## [ 1.1.1] - 2025-03-13
14
27
15
28
### Changed
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " at-python-template"
3
- version = " 1.1.1 "
3
+ version = " 1.1.2 "
4
4
description = " This is the official Python Project Template of Alexander Thamm GmbH (AT)"
5
5
authors = [
6
6
" Christian Baur <[email protected] >" ,
Original file line number Diff line number Diff line change 19
19
language_version : python3.9
20
20
exclude : ^notebooks{% else %}
21
21
- repo : https://github.com/astral-sh/ruff-pre-commit
22
- rev : ' v0.9.10 '
22
+ rev : ' v0.11.0 '
23
23
hooks :
24
24
- id : ruff{% endif %}
25
25
- repo : https://github.com/pycqa/isort
Original file line number Diff line number Diff line change @@ -17,4 +17,4 @@ dependencies:
17
17
- pip :
18
18
- black>=25.1.0{% else %}
19
19
- pip :
20
- - ruff>=0.9.7 {% endif %}
20
+ - ruff>=0.11.0 {% endif %}
Original file line number Diff line number Diff line change @@ -17,12 +17,12 @@ PyYAML = "^6.0.2"{% endif %}{% if cookiecutter.create_cli == 'yes' %}
17
17
typer = " ^0.15.1" {% endif %}
18
18
19
19
[tool .poetry .group .test .dependencies ]
20
- pytest = " ^8.3.4 "
20
+ pytest = " ^8.3.5 "
21
21
pytest-cov = " ^6.0.0"
22
22
23
23
[tool .poetry .group .linter .dependencies ]{% if cookiecutter.code_formatter == 'black' %}
24
24
black = " ^25.1.0" {% else %}
25
- ruff = " ^0.9.7 " {% endif %}
25
+ ruff = " ^0.11.0 " {% endif %}
26
26
isort = " ^6.0.0"
27
27
28
28
[tool .poetry .group .dev .dependencies ]
Original file line number Diff line number Diff line change 1
1
# This file defines the additional requirements for a developer working
2
2
# with this project (e.g. for testing or useful development tools).
3
3
# The regular project dependencies are defined in requirements.txt{% if cookiecutter.code_formatter == 'black' %}
4
- black ~= 22.10 {% endif %}
4
+ black ~= 25.1.0 {% endif %}
5
5
pre-commit ~= 4.1
6
- pytest ~= 8.3
6
+ pytest ~= 8.3.5
7
7
pytest-cov ~= 6.0
8
- wheel ~= 0.37
8
+ wheel ~= 0.45.1
You can’t perform that action at this time.
0 commit comments