From 0b0edc4964ab7ec9fc3180fa057f772f242c20fd Mon Sep 17 00:00:00 2001 From: Tamas Nepusz Date: Thu, 8 Apr 2021 14:49:34 +0200 Subject: [PATCH] chore: bumped version to 0.3.0 --- pyproject.toml | 2 +- yard/version.py | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ad96395..0f6262e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "yard" -version = "0.2.4" +version = "0.3.0" description = "Yet another ROC curve drawer" authors = ["Tamas Nepusz "] license = "MIT" diff --git a/yard/version.py b/yard/version.py index 788da1f..4b48f1d 100644 --- a/yard/version.py +++ b/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__) +