Skip to content

Commit ec9cbcc

Browse files
committed
bump: version 0.2.0 → 0.3.0
1 parent 9ea9aca commit ec9cbcc

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pyspock"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
description = "Python implementation for spock framework"
55
authors = ["ZhengYu, Xu <zen-xu@outlook.com>"]
66
license = "MIT"
@@ -86,7 +86,7 @@ exclude_lines = [
8686

8787
[tool.commitizen]
8888
name = "cz_conventional_commits"
89-
version = "0.2.0"
89+
version = "0.3.0"
9090
version_files = [
9191
"pyproject.toml:version",
9292
"src/_spock/__init__.py",

src/_spock/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
__all__ = ["__version__", "__authors__"]
22

3-
__version__ = "0.2.0"
3+
__version__ = "0.3.0"
44
__authors__ = ["ZhengYu, Xu <zen-xu@outlook.com>"]

tests/test_version.py

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

33

44
def test_version():
5-
assert __version__ == "0.2.0"
5+
assert __version__ == "0.3.0"

0 commit comments

Comments
 (0)