diff --git a/docs/changes.rst b/docs/changes.rst index c96f254..bc76805 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -1,7 +1,7 @@ Changes ======= -0.3.0 (2018-08-??) +0.3.0 (2018-08-25) ****************** Changes @@ -9,6 +9,10 @@ Changes * Added support for installing requirements using `Pipenv `_. The directory containing ``Pipfile`` and ``Pipfile.lock`` is set by the backend option **pipfile_location**, by default the root of the repository is selected. The Pipenv files take precedence over regular requirement files. + * The ``Result`` class now has two more attributes, ``stdout`` and ``stderr`` with the outputs of launched tasks to standard output and error. + Priting is therefore now allowed in the endpoints. + * Using UTF-8 locale in Docker images used in ``DockerBackend``. + * Supporting Python 3.7. 0.2.1 (2018-06-11) ****************** diff --git a/setup.py b/setup.py index 2da721a..284dd0d 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ def long_description(): setup( name="arca", - version="0.2.1", + version="0.3.0", author="Mikuláš Poul", author_email="mikulaspoul@gmail.com", description="A library for running Python functions (callables) from git repositories "