Skip to content

Commit b5dd3a9

Browse files
committed
Bump version: 0.0.1 → 0.0.2
1 parent 5a8935b commit b5dd3a9

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.bumpversion.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.bumpversion]
2-
current_version = "0.0.1"
2+
current_version = "0.0.2"
33
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
44
serialize = ["{major}.{minor}.{patch}"]
55
search = "{current_version}"

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ Overview
4141
:alt: Supported implementations
4242
:target: https://pypi.org/project/priority-search-tree
4343

44-
.. |commits-since| image:: https://img.shields.io/github/commits-since/yusinv/priority-search-tree/v0.0.1.svg
44+
.. |commits-since| image:: https://img.shields.io/github/commits-since/yusinv/priority-search-tree/v0.0.2.svg
4545
:alt: Commits since latest release
46-
:target: https://github.com/yusinv/priority-search-tree/compare/v0.0.1...main
46+
:target: https://github.com/yusinv/priority-search-tree/compare/v0.0.2...main
4747

4848

4949

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
year = "2024"
1818
author = "Valentin Yusin"
1919
copyright = f"{year}, {author}"
20-
version = release = "0.0.1"
20+
version = release = "0.0.2"
2121

2222
pygments_style = "trac"
2323
templates_path = ["."]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def read(*names, **kwargs):
1313

1414
setup(
1515
name="priority-search-tree",
16-
version="0.0.1",
16+
version="0.0.2",
1717
license="LGPL-3.0-or-later",
1818
description="Priority search tree data structure",
1919
long_description="{}\n{}".format(

src/priority_search_tree/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.0.1"
1+
__version__ = "0.0.2"
22

33
from collections import deque
44
from typing import Callable

0 commit comments

Comments
 (0)