From 60b20bd3c27c6d8812235386f2779e19872923ad Mon Sep 17 00:00:00 2001 From: Alejandro Piad Date: Fri, 13 Dec 2019 16:29:08 +0100 Subject: [PATCH 1/4] Bump version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b84e3ab..3427ffa 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ # TODO: Update version whenever changes -VERSION = '0.4.0' +VERSION = '0.4.2' def get_install_requirements(): From 821c49b367607343c961e305b68ff944cbe789b5 Mon Sep 17 00:00:00 2001 From: Alejandro Piad Date: Fri, 13 Dec 2019 16:29:19 +0100 Subject: [PATCH 2/4] Update Readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 17010b0..b24f4c9 100644 --- a/README.md +++ b/README.md @@ -220,7 +220,7 @@ Staying away from `eval` and `exec` should keep you safe in most scenarios, but ## History -### v0.4.1 +### v0.4.2 * Added support for injecting Python variables in Markdown mode. From 64e69bcf14349f39a55ea66f0f19b9c337b7a659 Mon Sep 17 00:00:00 2001 From: Alejandro Piad Date: Fri, 13 Dec 2019 16:30:37 +0100 Subject: [PATCH 3/4] Put test deploy back --- .travis.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.travis.yml b/.travis.yml index 7a94a29..6837867 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,8 @@ cache: pip python: - 3.6 + - 3.7 + - 3.8 install: make install script: make test @@ -19,3 +21,11 @@ deploy: distributions: "sdist bdist_wheel" on: tags: true + + - provider: pypi + user: $TEST_PYPI_USER + password: $TEST_PYPI_PASSWORD + distributions: "sdist bdist_wheel" + server: https://test.pypi.org/legacy/ + on: + branch: develop From 3593a66c3d93e94719d3c85b150f5ec9fb0b3828 Mon Sep 17 00:00:00 2001 From: Alejandro Piad Date: Fri, 13 Dec 2019 16:33:55 +0100 Subject: [PATCH 4/4] Back --- .travis.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6837867..7a94a29 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,8 +4,6 @@ cache: pip python: - 3.6 - - 3.7 - - 3.8 install: make install script: make test @@ -21,11 +19,3 @@ deploy: distributions: "sdist bdist_wheel" on: tags: true - - - provider: pypi - user: $TEST_PYPI_USER - password: $TEST_PYPI_PASSWORD - distributions: "sdist bdist_wheel" - server: https://test.pypi.org/legacy/ - on: - branch: develop