Skip to content

Commit 04fe81d

Browse files
authored
Merge pull request #247 from c0fec0de/246-outdated-version-number
fix #246, fix outdated version specifier
2 parents 5869589 + eba1c4f commit 04fe81d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,9 @@ version=$(poetry version -s)
5757

5858
sed "s/$prev_version/$version/g" -i README.rst
5959
sed "s/$prev_version/$version/g" -i docs/index.rst
60+
sed "s/$prev_version/$version/g" -i anytree/__init__.py
6061

61-
git commit -m"version bump to ${version}" pyproject.toml README.rst docs/index.rst
62+
git commit -m"version bump to ${version}" pyproject.toml README.rst docs/index.rst anytree/__init__.py
6263
git tag "${version}" -m "Release ${version}"
6364
git push
6465
git push --tags

anytree/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

5-
__version__ = "2.9.0"
5+
__version__ = "2.12.0"
66
__author__ = "c0fec0de"
77
__author_email__ = "[email protected]"
88
__description__ = """Powerful and Lightweight Python Tree Data Structure.."""

0 commit comments

Comments
 (0)