Skip to content
This repository has been archived by the owner on Jan 19, 2018. It is now read-only.

Commit

Permalink
Merge pull request #657 from cdrage/release-0.4.5
Browse files Browse the repository at this point in the history
0.4.5 Release
  • Loading branch information
cdrage committed Mar 29, 2016
2 parents 95a4de0 + a88f375 commit 5e441c4
Show file tree
Hide file tree
Showing 7 changed files with 42 additions and 6 deletions.
36 changes: 36 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,39 @@
## Atomic App 0.4.5 (03-29-2016)

This is a minor release of Atomic App where we make some changes to the UI output as well as fix a few provider-specific bugs.

The main features of this release are:

- Cleaner logging output
- More prominent output when Atomic App asks for a missing answers variable
- Multi-line artifact support for the Docker provider

Other:

- Update documentation on cli comparison
- Move kubeconfig parsing to a separate class
- Refactor cli exceptions code

```
Charlie Drage <charlie@charliedrage.com>:
Convert to epoch time
Update docs / more clarity on cli comparison
Change asking format
Move kubeconfig parsing to a separate file
Change kubeconfig testing name and move into a separate file
Add weekly meeting information
Preeti Chandrashekar <preetipagad@gmail.com>:
Minor edits to atomicapp_lifecycle.md
Shubham Minglani <shubham@linux.com>:
handle docker error, raise instead of print, fix #570
refactor exceptions, fix #621, fix #622
Suraj Deshmukh <surajssd009005@gmail.com>:
Docker-run file with multi-line command supported
```

## Atomic App 0.4.4 (03-15-2016)

This release includes a major update to our documentation as well as the user experience when deploying an Atomic App.
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM centos:7

MAINTAINER Red Hat, Inc. <container-tools@redhat.com>

ENV ATOMICAPPVERSION="0.4.4"
ENV ATOMICAPPVERSION="0.4.5"

LABEL io.projectatomic.nulecule.atomicappversion=${ATOMICAPPVERSION} \
io.openshift.generate.job=true \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles.git/Dockerfile.centos
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM centos:7

MAINTAINER Red Hat, Inc. <container-tools@redhat.com>

ENV ATOMICAPPVERSION="0.4.4"
ENV ATOMICAPPVERSION="0.4.5"

LABEL io.projectatomic.nulecule.atomicappversion=${ATOMICAPPVERSION} \
io.openshift.generate.job=true \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles.git/Dockerfile.debian
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM debian:jessie

MAINTAINER Red Hat, Inc. <container-tools@redhat.com>

ENV ATOMICAPPVERSION="0.4.4"
ENV ATOMICAPPVERSION="0.4.5"

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 NAME=\${NAME} -e IMAGE=\${IMAGE} \${IMAGE} \${OPT2} run \${OPT3}" \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles.git/Dockerfile.fedora
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM fedora:23

MAINTAINER Red Hat, Inc. <container-tools@redhat.com>

ENV ATOMICAPPVERSION="0.4.4"
ENV ATOMICAPPVERSION="0.4.5"

LABEL io.projectatomic.nulecule.atomicappversion=${ATOMICAPPVERSION} \
io.openshift.generate.job=true \
Expand Down
2 changes: 1 addition & 1 deletion atomicapp/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
2) LABEL io.projectatomic.nulecule.specversion in app Dockefile
"""

__ATOMICAPPVERSION__ = '0.4.4'
__ATOMICAPPVERSION__ = '0.4.5'
__NULECULESPECVERSION__ = '0.0.2'

EXTERNAL_APP_DIR = "external"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def _install_requirements():

setup(
name='atomicapp',
version='0.4.4',
version='0.4.5',
description='A tool to install and run Nulecule apps',
author='Red Hat, Inc.',
author_email='container-tools@redhat.com',
Expand Down

0 comments on commit 5e441c4

Please sign in to comment.