We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0aae1d commit 0b0edc4Copy full SHA for 0b0edc4
pyproject.toml
@@ -1,6 +1,6 @@
1
[tool.poetry]
2
name = "yard"
3
-version = "0.2.4"
+version = "0.3.0"
4
description = "Yet another ROC curve drawer"
5
authors = ["Tamas Nepusz <ntamas@gmail.com>"]
6
license = "MIT"
yard/version.py
@@ -1 +1,3 @@
-__version__ = "0.2.4"
+__version_info__ = (0, 3, 0)
+__version__ = ".".join("{0}".format(x) for x in __version_info__)
+
0 commit comments