Skip to content

Commit

Permalink
Bump version for release
Browse files Browse the repository at this point in the history
Also tweak the bump script and add a changelog entry.
  • Loading branch information
sirosen committed Oct 28, 2024
1 parent 4abcf01 commit 54a71d2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ CHANGELOG
Unreleased
----------

1.1.0
-----

- Add support for Python 3.8

1.0.0
-----

Expand Down
2 changes: 1 addition & 1 deletion docs/cli_usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ The ``lint-dependency-groups`` CLI is also available as a pre-commit hook:
repos:
- repo: https://github.com/sirosen/dependency-groups
rev: 0.3.0
rev: 1.1.0
hooks:
- id: lint-dependency-groups
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ build = ["twine", "build"]

[project]
name = "dependency-groups"
version = "1.0.0"
version = "1.1.0"
description = 'A tool for resolving PEP 735 Dependency Group data'
readme = "README.rst"
requires-python = ">=3.8"
Expand Down
2 changes: 1 addition & 1 deletion scripts/bump-version.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def main():
comparse_versions(old_version, new_version)

replace_version("pyproject.toml", 'version = "{}"', old_version, new_version)
replace_version("README.rst", "rev: {}", old_version, new_version)
replace_version("docs/cli_usage.rst", "rev: {}", old_version, new_version)
update_changelog(new_version)


Expand Down

0 comments on commit 54a71d2

Please sign in to comment.