diff --git a/CHANGELOG.md b/CHANGELOG.md index a31dd698..8bfc4a7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,26 @@ +# 0.6.0 + +# Breaking changes + +* We have split `new_app` method of origin backend to three specific methods: + - `deploy_image` for deployment of an image. + - `create_new_app_from_source` for deployment of applications using source-to-image from local or remote source. + - `create_app_from_template` for deployment of applications using OpenShift templates. + +# New features + +* Troubleshooting and debugging of OpenShift backend is now easier because of new methods `get_logs` and `get_status`. + +# Fixes + +* Documentation is updated and now includes OpenShift and Kubernetes backends. +* Fixed race condition when starting docker containers via binary. +* Nspawn backend improvements: + - Changed default image location to `/opt` to avoid issues with brtfs and using loopback device. + - Do not use pull-raw and importing via machinectl. + - Test suite improvements. + + # 0.5.0 ## New Features diff --git a/README.md b/README.md index 5510895b..f1774f65 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ docker run -it --rm \ -v /var/run/docker.sock:/var/run/docker.sock:z \ --cap-add SYS_ADMIN \ --privileged \ -usercont/conu:0.5.0 python3 +usercont/conu:0.6.0 python3 ``` ```python @@ -66,7 +66,7 @@ docker run -it --rm \ -v $PWD/my_source.py:/app/my_source.py:z \ --cap-add SYS_ADMIN \ --privileged \ -usercont/conu:0.5.0 python3 /app/my_source.py +usercont/conu:0.6.0 python3 /app/my_source.py ``` # Features diff --git a/conu/version.py b/conu/version.py index bdcfa78f..deb9846d 100644 --- a/conu/version.py +++ b/conu/version.py @@ -14,4 +14,4 @@ # along with this program. If not, see . # # https://www.python.org/dev/peps/pep-0440/ -__version__ = '0.5.0' +__version__ = '0.6.0'