Skip to content

Commit

Permalink
Merge pull request #247 from c0fec0de/246-outdated-version-number
Browse files Browse the repository at this point in the history
fix #246, fix outdated version specifier
  • Loading branch information
c0fec0de committed Nov 16, 2023
2 parents 5869589 + eba1c4f commit 04fe81d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,9 @@ version=$(poetry version -s)

sed "s/$prev_version/$version/g" -i README.rst
sed "s/$prev_version/$version/g" -i docs/index.rst
sed "s/$prev_version/$version/g" -i anytree/__init__.py

git commit -m"version bump to ${version}" pyproject.toml README.rst docs/index.rst
git commit -m"version bump to ${version}" pyproject.toml README.rst docs/index.rst anytree/__init__.py
git tag "${version}" -m "Release ${version}"
git push
git push --tags
Expand Down
2 changes: 1 addition & 1 deletion anytree/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

"""Powerful and Lightweight Python Tree Data Structure."""

__version__ = "2.9.0"
__version__ = "2.12.0"
__author__ = "c0fec0de"
__author_email__ = "c0fec0de@gmail.com"
__description__ = """Powerful and Lightweight Python Tree Data Structure.."""
Expand Down

0 comments on commit 04fe81d

Please sign in to comment.