From 66f2c3c768b9507b484d4be6d344822074fd35b6 Mon Sep 17 00:00:00 2001 From: Ethan Paul <24588726+enpaul@users.noreply.github.com> Date: Fri, 25 Sep 2020 01:04:12 -0400 Subject: [PATCH] Bump patch version --- pyproject.toml | 2 +- tox_poetry_installer.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 135c7d8..0a9e8a8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tox-poetry-installer" -version = "0.1.2" +version = "0.1.3" license = "MIT" authors = ["Ethan Paul <24588726+enpaul@users.noreply.github.com>"] description = "Tox plugin to install Tox environment dependencies using the Poetry backend and lockfile" diff --git a/tox_poetry_installer.py b/tox_poetry_installer.py index 24ab25d..e638021 100644 --- a/tox_poetry_installer.py +++ b/tox_poetry_installer.py @@ -27,7 +27,7 @@ from tox.venv import VirtualEnv as ToxVirtualEnv __title__ = "tox-poetry-installer" __summary__ = "Tox plugin to install Tox environment dependencies using the Poetry backend and lockfile" -__version__ = "0.1.2" +__version__ = "0.1.3" __url__ = "https://github.com/enpaul/tox-poetry-installer/" __license__ = "MIT" __authors__ = ["Ethan Paul <24588726+enpaul@users.noreply.github.com>"]