Skip to content

Commit

Permalink
Release notes for 0.18.0 (#214)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gallaecio authored Jan 30, 2025
1 parent c813a69 commit a0a461e
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 10 deletions.
10 changes: 0 additions & 10 deletions .bumpversion.cfg

This file was deleted.

10 changes: 10 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
Changelog
=========

0.18.0 (unreleased)
-------------------

* Removed support for Python 3.8, added support for Python 3.13.
* The minimum required version of :doc:`url-matcher <url-matcher:index>`
changed from ``0.2.0`` to ``0.4.0``.
* ``type(None)`` is no longer considered injectable.
* Added :meth:`RulesRegistry.top_rules_for_item()
<web_poet.rules.RulesRegistry.top_rules_for_item>`.

0.17.1 (2024-10-11)
-------------------

Expand Down
19 changes: 19 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
[tool.bumpversion]
current_version = "0.17.1"
commit = true
tag = true
tag_name = "{new_version}"

[[tool.bumpversion.files]]
filename = 'CHANGELOG.rst'
search = "\\(unreleased\\)$"
replace = "({now:%Y-%m-%d})"
regex = true

[[tool.bumpversion.files]]
filename = "docs/conf.py"

[[tool.bumpversion.files]]
filename = "setup.py"
parse = "version\\s*=\\s*['\"](?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"

[tool.isort]
profile = "black"
multi_line_output = 3
Expand Down

0 comments on commit a0a461e

Please sign in to comment.