Skip to content

Commit 57bfc33

Browse files
committedAug 23, 2021
Bump version: 1.0.3 → 2.0.0
1 parent b3a38f8 commit 57bfc33

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed
 

‎.bumpversion.cfg

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
[bumpversion]
2-
current_version = 1.0.3
2+
current_version = 2.0.0
33
commit = True
44
tag = True
55

66
[bumpversion:file:collections_extended/_version.py]
77

8-
[bumpversion:file:setup.py]
9-
8+
[bumpversion:file:pyproject.toml]
9+
search = version = "{current_version}"
10+
replace = version = "{new_version}"

‎collections_extended/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""Module to store version so it can be imported in other modules."""
2-
__version__ = '1.0.3'
2+
__version__ = '2.0.0'

‎pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "collections-extended"
3-
version = "1.0.3"
3+
version = "2.0.0"
44
description = "Extra Python Collections - bags (multisets) and setlists (ordered sets)"
55
authors = ["Michael Lenzen <m.lenzen@gmail.com>"]
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)
Please sign in to comment.