Skip to content

Commit

Permalink
Merge pull request #317 from user-cont/0.6.1-release
Browse files Browse the repository at this point in the history
0.6.1 release
  • Loading branch information
lachmanfrantisek authored Nov 14, 2018
2 parents d89e7d4 + 4cbb1bb commit 8524ba2
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 5 deletions.
16 changes: 13 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,27 @@
# 0.6.1

This is a bug-fix release to resolve the issues with dependencies.

## Fixes

* Resolve an issue when enum34 was listed as a requirement on python 3.
* Conu can now be used in linux distributions because it no longer requires precise versions of its dependencies.


# 0.6.0

# Breaking changes
## 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
## New features

* Troubleshooting and debugging of OpenShift backend is now easier because of new methods `get_logs` and `get_status`.

# Fixes
## Fixes

* Documentation is updated and now includes OpenShift and Kubernetes backends.
* Fixed race condition when starting docker containers via binary.
Expand Down
7 changes: 6 additions & 1 deletion conu.spec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
%endif

Name: %{pypi_name}
Version: 0.4.0
Version: 0.6.1
Release: 1%{?dist}
Summary: library which makes it easy to write tests for your containers

Expand Down Expand Up @@ -45,6 +45,7 @@ Requires: python-requests
BuildRequires: python2-docker
BuildRequires: python2-enum34
Requires: python2-docker
Requires: python2-kubernetes
Requires: python2-enum34
Requires: python2-requests
%endif
Expand Down Expand Up @@ -92,6 +93,7 @@ Summary: %{summary}
BuildRequires: python3-devel
BuildRequires: python3-setuptools
Requires: python3-docker
Requires: python3-kubernetes
Requires: python3-requests
Requires: python3-pyxattr
Requires: python3-six
Expand Down Expand Up @@ -177,6 +179,9 @@ rm -rf html/.{doctrees,buildinfo}
%license LICENSE

%changelog
* Wed Nov 14 2018 Tomas Tomecek <ttomecek@redhat.com> - 0.6.1-1
- 0.6.1 release

* Thu May 24 2018 Tomas Tomecek <ttomecek@redhat.com> - 0.4.0-1
- 0.4.0 release

Expand Down
2 changes: 1 addition & 1 deletion conu/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# https://www.python.org/dev/peps/pep-0440/
__version__ = '0.6.0'
__version__ = '0.6.1'

0 comments on commit 8524ba2

Please sign in to comment.