From 9014d155496b6d29632e56fb9bd57dc4139d6f19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikul=C3=A1=C5=A1=20Poul?= Date: Sat, 23 Nov 2019 14:21:14 +0100 Subject: [PATCH] Bump version and update changelog --- arca/__init__.py | 2 +- docs/changes.rst | 10 +++++++++- setup.py | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/arca/__init__.py b/arca/__init__.py index 3f86a5d..d694b3e 100644 --- a/arca/__init__.py +++ b/arca/__init__.py @@ -6,4 +6,4 @@ __all__ = ["Arca", "BaseBackend", "VenvBackend", "DockerBackend", "Result", "Task", "CurrentEnvironmentBackend", "VagrantBackend"] -__version__ = "0.3.1" +__version__ = "0.3.2" diff --git a/docs/changes.rst b/docs/changes.rst index 18a2b53..b2f4c86 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -1,6 +1,14 @@ Changes ======= +0.3.2 (2019-11-23) +****************** + +Changes: + * Moved the project under organisation Pyvec. + * Changed the Docker registry for the base images to `arcaoss/arca`. + * Fixed unicode paths to repositories (`#60 `_) + 0.3.1 (2018-11-16) ****************** @@ -9,7 +17,7 @@ Raising a Arca exception when building of a Docker image fails. (`#56 `_. The directory containing ``Pipfile`` and ``Pipfile.lock`` is set by the backend option **pipfile_location**, by default the root of the repository is selected. diff --git a/setup.py b/setup.py index 5a1f1bf..e2ff41e 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ def long_description(): setup( name="arca", - version="0.3.1", + version="0.3.2", author="Mikuláš Poul", author_email="mikulaspoul@gmail.com", description="A library for running Python functions (callables) from git repositories "