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 #800 from cdrage/release-0.6.4
Browse files Browse the repository at this point in the history
0.6.4 Release
  • Loading branch information
cdrage authored Oct 6, 2016
2 parents 2c5eeca + ed963ce commit 357325a
Show file tree
Hide file tree
Showing 10 changed files with 28 additions and 9 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
## Atomic App 0.6.4 (10-06-2016)

This release of Atomic App includes a large refactor of the "config" class as well as a minor change to our release script.

Features:
- Config refactor
- Release script fix
- Test cases added to the config class

```
Charlie Drage <[email protected]> (1):
Update release script regex
Ratnadeep Debnath <[email protected]> (3):
Initial work on refactoring Nulecule config. #524
Re implememt Config class to be more generic. Fixes #524
Fixed tests for config refactor.
```

## Atomic App 0.6.3 (08-31-2016)

This release focuses on bug fixes, scripts as well as the Nulecule specification being merged into 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. <[email protected]>

ENV ATOMICAPPVERSION="0.6.3"
ENV ATOMICAPPVERSION="0.6.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.6.3"
ENV ATOMICAPPVERSION="0.6.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.6.3"
ENV ATOMICAPPVERSION="0.6.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 USER -e SUDO_USER -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.6.3"
ENV ATOMICAPPVERSION="0.6.4"

LABEL io.projectatomic.nulecule.atomicappversion=${ATOMICAPPVERSION} \
io.openshift.generate.job=true \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles.pkgs/Dockerfile.centos
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ MAINTAINER Red Hat, Inc. <[email protected]>

# Check https://bodhi.fedoraproject.org/updates/?packages=atomicapp
# for the most recent builds of atomicapp in epel
ENV ATOMICAPPVERSION="0.6.3"
ENV ATOMICAPPVERSION="0.6.4"
ENV TESTING="--enablerepo=epel-testing"

LABEL io.projectatomic.nulecule.atomicappversion=${ATOMICAPPVERSION} \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles.pkgs/Dockerfile.fedora
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ MAINTAINER Red Hat, Inc. <[email protected]>

# Check https://bodhi.fedoraproject.org/updates/?packages=atomicapp
# for the most recent builds of atomicapp in fedora
ENV ATOMICAPPVERSION="0.6.3"
ENV ATOMICAPPVERSION="0.6.4"
ENV TESTING="--enablerepo=updates-testing"

LABEL io.projectatomic.nulecule.atomicappversion=${ATOMICAPPVERSION} \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.6.3
export RELEASE=0.6.4
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
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.6.3'
__ATOMICAPPVERSION__ = '0.6.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.6.3',
version='0.6.4',
description='A tool to install and run Nulecule apps',
author='Red Hat, Inc.',
author_email='[email protected]',
Expand Down

0 comments on commit 357325a

Please sign in to comment.