From 1ba90eb275afb9545811912893e66dd245648a6c Mon Sep 17 00:00:00 2001 From: "mr.Shu" Date: Fri, 27 Sep 2019 09:28:07 +0200 Subject: [PATCH] version: Bump to v0.1.2 * Bump version to v0.1.2 Signed-off-by: mr.Shu --- envtoml/__init__.py | 2 +- pyproject.toml | 2 +- tests/test_envtoml.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/envtoml/__init__.py b/envtoml/__init__.py index 976b71f..049b88c 100644 --- a/envtoml/__init__.py +++ b/envtoml/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.1.1' +__version__ = '0.1.2' import toml import os diff --git a/pyproject.toml b/pyproject.toml index a53bc1e..fc9c945 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "envTOML" -version = "0.1.1" +version = "0.1.2" description = "A simple way of using environment variables in TOML configs (via interpolation)" authors = ["mr.Shu "] license = "MIT" diff --git a/tests/test_envtoml.py b/tests/test_envtoml.py index 4dc513b..4085f27 100644 --- a/tests/test_envtoml.py +++ b/tests/test_envtoml.py @@ -17,7 +17,7 @@ def test_version(): - assert __version__ == '0.1.1' + assert __version__ == '0.1.2' def test_load():