File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11repos :
22- repo : https://github.com/astral-sh/ruff-pre-commit
3- rev : v0.11.12
3+ rev : v0.12.0
44 hooks :
55 - id : ruff-check
66 args : [ --fix ]
Original file line number Diff line number Diff line change 22Protego changelog
33=================
44
5+ 0.5.0 (unreleased)
6+ ==================
7+
8+ - Restructured the code, splitting the single ``protego.py `` file into
9+ multiple modules. The public API remains the same but some internal names
10+ may now be available at different import paths.
11+
12+ - Added type hints and ``py.typed ``.
13+
14+ - Added official support for PyPy 3.11.
15+
16+ - Switched the build backend from ``setuptools `` to ``hatchling ``.
17+
18+ - Switched from ``setup.py `` to ``pyproject.toml ``.
19+
20+ - CI fixes and improvements.
21+
5220.4.0 (2024-11-15)
623==================
724
Original file line number Diff line number Diff line change @@ -55,6 +55,12 @@ commit = true
5555tag = true
5656tag_name = " {new_version}"
5757
58+ [[tool .bumpversion .files ]]
59+ filename = " CHANGELOG.rst"
60+ search = " \\ (unreleased\\ )$"
61+ replace = " ({now:%Y-%m-%d})"
62+ regex = true
63+
5864[tool .coverage .run ]
5965branch = true
6066
Original file line number Diff line number Diff line change @@ -30,8 +30,8 @@ commands =
3030[testenv:typing]
3131basepython = python3
3232deps =
33- mypy ==1.16.0
33+ mypy ==1.16.1
3434 pytest
35- scrapy ==2.13.1
35+ scrapy ==2.13.2
3636commands =
3737 mypy --strict {posargs: src tests}
You can’t perform that action at this time.
0 commit comments