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 #634 from cdrage/release-0.4.4
Browse files Browse the repository at this point in the history
0.4.4 Release
  • Loading branch information
cdrage committed Mar 15, 2016
2 parents 4b9e4e3 + 07af6e0 commit f91da40
Show file tree
Hide file tree
Showing 7 changed files with 60 additions and 6 deletions.
54 changes: 54 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,57 @@
## 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.

The main features are:

- Major update to documentation
- Cleaner logging output
- Error-out validation on JSON/YAML

UI:

- Fix --version output on CLI
- Handle docker exception errors
- Inform on wrong provider name provided within answers.conf

Other:

- Fix requirements on 'make test'

For a full list of changes between 0.4.4 and 0.4.3 please see the git shortlog below!

```
Charlie Drage <[email protected]> (10):
Doc for current functions implemented by spec
Fix minor markdown error in spec_coverage
Major update to README and documentation
Error cleanly on missing Nulecule or invalid formatted Nulecule
Multiple problems with issuestats.com
Add tests for missing Nulecule or wrongly formatted file for missing
Change from ReadWrite to ReadWriteOnce in persistent storage tests
Add Persistent Storage validation on ReadWriteOnce, etc.
Remove time from default output
Convert to epoch time
Dusty Mabe <[email protected]> (2):
docs: fix broken link
logging: fix duplicated log messages
Preeti Chandrashekar <[email protected]> (1):
Minor edits to atomicapp_lifecycle.md
Shubham Minglani <[email protected]> (2):
Handle docker pull exception, improve #441, fix #568
fix --version output, fix #481
Suraj Deshmukh <[email protected]> (5):
Install requirements before make test
Wrong provider name in answers.conf, exits AtomicApp with readable error
Typo in providers docs
Instruction to skip travis CI
Inform user when provider not specified
```

## Atomic App 0.4.3 (03-01-2016)

You'll now see pretty colors with logging / output!
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. <[email protected]>

ENV ATOMICAPPVERSION="0.4.3"
ENV ATOMICAPPVERSION="0.4.4"

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. <[email protected]>

ENV ATOMICAPPVERSION="0.4.3"
ENV ATOMICAPPVERSION="0.4.4"

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. <[email protected]>

ENV ATOMICAPPVERSION="0.4.3"
ENV ATOMICAPPVERSION="0.4.4"

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. <[email protected]>

ENV ATOMICAPPVERSION="0.4.3"
ENV ATOMICAPPVERSION="0.4.4"

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.3'
__ATOMICAPPVERSION__ = '0.4.4'
__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.3',
version='0.4.4',
description='A tool to install and run Nulecule apps',
author='Red Hat, Inc.',
author_email='[email protected]',
Expand Down

0 comments on commit f91da40

Please sign in to comment.