Skip to content
This repository was archived by the owner on Jan 19, 2018. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,50 @@
## Atomic App 0.4.3 (03-01-2016)

You'll now see pretty colors with logging / output!

With this release, we've refactored our logging formatter making it easier to decipher between information, debug, warning and errors.

You are now able to specify what logging format you'd like to output via the command line:

```
--logtype {cockpit,color,nocolor,none}
Override the default logging output. The options are:
nocolor: we will only log to stdout; color: log to
stdout with color; cockpit: used with cockpit
integration; none: atomicapp will disable any logging.
If nothing is set and logging to file then 'nocolor'
by default. If nothing is set and logging to tty then
'color' by default.
```

The main features are:

- A new logging mechanism that outputs color-coordinated logging messages
- Added CLI commands for color, nocolor, cockpit and 'none' output

UI:

- Failure on finding no artifacts

Other:

- Readme updates / typo fixes

```
Charlie Drage <charlie@charliedrage.com> (3):
Fail if unable to find artifact
Change order of getting context
Update readme

Dusty Mabe <dusty@dustymabe.com> (4):
logging: Add in Atomic App Logging class
logging: add cockpit logging output
tests: fix test to look for output in stdout vs stderr

Shubham Minglani <shubham@linux.com> (1):
Remove extra whitespaces from logging output.
```

## Atomic App 0.4.2 (02-18-2016)

As we start to get closer to a 1.0.0 release, we continue to focus on tests and user interaction. This weeks release focus on both as well as a minor feature.
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.2"
ENV ATOMICAPPVERSION="0.4.3"

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.2"
ENV ATOMICAPPVERSION="0.4.3"

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.2"
ENV ATOMICAPPVERSION="0.4.3"

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.2"
ENV ATOMICAPPVERSION="0.4.3"

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.2'
__ATOMICAPPVERSION__ = '0.4.3'
__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.2',
version='0.4.3',
description='A tool to install and run Nulecule apps',
author='Red Hat, Inc.',
author_email='container-tools@redhat.com',
Expand Down