diff --git a/CHANGELOG.md b/CHANGELOG.md index 648f56f1..d15265c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +## Atomic App 0.6.0 (06-14-2016) + +A major release of Atomic App, we incorporate major changes to the **kubernetes** provider. With this release we replace the usage of kubectl with the *requests* Python library and the Kubernetes HTTP API end-point. This change results in faster deployment, smaller image sizes and detailed error messages. + +The main features of this release are: + - Kubectl to API conversion for the Kubernetes provider + - Removal of ASCII art + +``` +Charlie Drage (3): + Ignore .swn vim temp files + Remove ASCII art + Add a new 'library' for k8s/openshift providers. + +Khris Richardson (2): + add support for api-groups + add precision to resource membership test +``` + ## Atomic App 0.5.2 (05-24-2016) This release of Atomic App we include binary generation, a logging refactor/clean-up as well as a minor code refactor to the main Nulecule codebase. diff --git a/Dockerfile b/Dockerfile index 995142a0..7747e81d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM centos:7 MAINTAINER Red Hat, Inc. -ENV ATOMICAPPVERSION="0.5.2" +ENV ATOMICAPPVERSION="0.6.0" LABEL io.projectatomic.nulecule.atomicappversion=${ATOMICAPPVERSION} \ io.openshift.generate.job=true \ diff --git a/Dockerfiles.git/Dockerfile.centos b/Dockerfiles.git/Dockerfile.centos index 995142a0..7747e81d 100644 --- a/Dockerfiles.git/Dockerfile.centos +++ b/Dockerfiles.git/Dockerfile.centos @@ -2,7 +2,7 @@ FROM centos:7 MAINTAINER Red Hat, Inc. -ENV ATOMICAPPVERSION="0.5.2" +ENV ATOMICAPPVERSION="0.6.0" LABEL io.projectatomic.nulecule.atomicappversion=${ATOMICAPPVERSION} \ io.openshift.generate.job=true \ diff --git a/Dockerfiles.git/Dockerfile.debian b/Dockerfiles.git/Dockerfile.debian index 47bb7b7a..a3be883d 100644 --- a/Dockerfiles.git/Dockerfile.debian +++ b/Dockerfiles.git/Dockerfile.debian @@ -2,7 +2,7 @@ FROM debian:jessie MAINTAINER Red Hat, Inc. -ENV ATOMICAPPVERSION="0.5.2" +ENV ATOMICAPPVERSION="0.6.0" LABEL io.projectatomic.nulecule.atomicappversion=${ATOMICAPPVERSION} \ RUN="docker run -it --rm \${OPT1} --privileged -v \${PWD}:/atomicapp -v /run:/run -v /:/host --net=host --name \${NAME} -e USER -e SUDO_USER -e NAME=\${NAME} -e IMAGE=\${IMAGE} \${IMAGE} \${OPT2} run \${OPT3}" \ diff --git a/Dockerfiles.git/Dockerfile.fedora b/Dockerfiles.git/Dockerfile.fedora index cb3cd7cb..a3a9eeeb 100644 --- a/Dockerfiles.git/Dockerfile.fedora +++ b/Dockerfiles.git/Dockerfile.fedora @@ -2,7 +2,7 @@ FROM fedora:23 MAINTAINER Red Hat, Inc. -ENV ATOMICAPPVERSION="0.5.2" +ENV ATOMICAPPVERSION="0.6.0" LABEL io.projectatomic.nulecule.atomicappversion=${ATOMICAPPVERSION} \ io.openshift.generate.job=true \ diff --git a/Dockerfiles.pkgs/Dockerfile.centos b/Dockerfiles.pkgs/Dockerfile.centos index 671a80bc..68dcfc47 100644 --- a/Dockerfiles.pkgs/Dockerfile.centos +++ b/Dockerfiles.pkgs/Dockerfile.centos @@ -4,7 +4,7 @@ MAINTAINER Red Hat, Inc. # Check https://bodhi.fedoraproject.org/updates/?packages=atomicapp # for the most recent builds of atomicapp in epel -ENV ATOMICAPPVERSION="0.5.2" +ENV ATOMICAPPVERSION="0.6.0" ENV TESTING="--enablerepo=epel-testing" LABEL io.projectatomic.nulecule.atomicappversion=${ATOMICAPPVERSION} \ diff --git a/Dockerfiles.pkgs/Dockerfile.fedora b/Dockerfiles.pkgs/Dockerfile.fedora index 25e3ab6e..a9719217 100644 --- a/Dockerfiles.pkgs/Dockerfile.fedora +++ b/Dockerfiles.pkgs/Dockerfile.fedora @@ -4,7 +4,7 @@ MAINTAINER Red Hat, Inc. # Check https://bodhi.fedoraproject.org/updates/?packages=atomicapp # for the most recent builds of atomicapp in fedora -ENV ATOMICAPPVERSION="0.5.2" +ENV ATOMICAPPVERSION="0.6.0" ENV TESTING="--enablerepo=updates-testing" LABEL io.projectatomic.nulecule.atomicappversion=${ATOMICAPPVERSION} \ diff --git a/README.md b/README.md index b156e9aa..ea2c5b9d 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ _or_ Download a pre-signed .tar.gz from [download.projectatomic.io](https://download.projectatomic.io) / [GitHub](https://github.com/projectatomic/atomicapp/releases): ```sh -export RELEASE=0.5.2 +export RELEASE=0.6.0 wget https://github.com/projectatomic/atomicapp/releases/download/$RELEASE/atomicapp-$RELEASE.tar.gz tar -xvf atomicapp-$RELEASE.tar.gz && cd atomicapp-$RELEASE sudo make install diff --git a/atomicapp/constants.py b/atomicapp/constants.py index 0ab748de..7879fd45 100644 --- a/atomicapp/constants.py +++ b/atomicapp/constants.py @@ -23,7 +23,7 @@ 2) LABEL io.projectatomic.nulecule.specversion in app Dockefile """ -__ATOMICAPPVERSION__ = '0.5.2' +__ATOMICAPPVERSION__ = '0.6.0' __NULECULESPECVERSION__ = '0.0.2' EXTERNAL_APP_DIR = "external" diff --git a/setup.py b/setup.py index 1e117d18..b797a8b7 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ def _install_requirements(): setup( name='atomicapp', - version='0.5.2', + version='0.6.0', description='A tool to install and run Nulecule apps', author='Red Hat, Inc.', author_email='container-tools@redhat.com',