From 2f2149ae33b65d9381f0b7cee1041a6a0248c66d Mon Sep 17 00:00:00 2001 From: Sumanth Ratna Date: Thu, 27 May 2021 20:50:51 -0400 Subject: [PATCH] Release 0.3.1 --- docs/conf.py | 2 +- pyproject.toml | 2 +- tests/test_viewmask.py | 2 +- viewmask/__init__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index b270a3a..0e95c31 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -23,7 +23,7 @@ author = 'Sumanth Ratna' # The full version, including alpha/beta/rc tags -release = '0.3.0' +release = '0.3.1' # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index d8ca4e0..8201d68 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "viewmask" -version = "0.3.0" +version = "0.3.1" description = "A Python package and CLI to view XML annotations and NumPy masks." license = "MIT" authors = ["sumanthratna "] diff --git a/tests/test_viewmask.py b/tests/test_viewmask.py index 298a8ee..13001ae 100644 --- a/tests/test_viewmask.py +++ b/tests/test_viewmask.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == '0.3.0' + assert __version__ == '0.3.1' diff --git a/viewmask/__init__.py b/viewmask/__init__.py index acf9aa2..ac04f8a 100644 --- a/viewmask/__init__.py +++ b/viewmask/__init__.py @@ -1,5 +1,5 @@ from collections import UserList -__version__ = '0.3.0' +__version__ = '0.3.1' from viewmask import utils # noqa # pylint: disable=unused-import