Skip to content

Commit 0b0edc4

Browse files
committed
chore: bumped version to 0.3.0
1 parent a0aae1d commit 0b0edc4

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "yard"
3-
version = "0.2.4"
3+
version = "0.3.0"
44
description = "Yet another ROC curve drawer"
55
authors = ["Tamas Nepusz <ntamas@gmail.com>"]
66
license = "MIT"

yard/version.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
__version__ = "0.2.4"
1+
__version_info__ = (0, 3, 0)
2+
__version__ = ".".join("{0}".format(x) for x in __version_info__)
3+

0 commit comments

Comments
 (0)