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

Commit

Permalink
0.4.0 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
cdrage committed Jan 20, 2016
1 parent 7e4a790 commit 7673e09
Show file tree
Hide file tree
Showing 7 changed files with 40 additions and 6 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,37 @@
## Atomic App 0.4.0 (01-20-2016)

With this release we bump our version to 0.4.0 to coincide with our BETA-4 release as well as the change to our "install" verb.

The most significant new features are:
- Renaming install to fetch
- Allowing users to pass an answers file as a URL

For an extended list of changes, please see the git shortlog below.

```
Charlie Drage <charlie@charliedrage.com>:
Change undeploy/deploy functions to run/stop
Rename install to fetch
Remove mention of uninstall function
Fix test names
Remove install label from Dockerfiles
Dusty Mabe <dusty@dustymabe.com>:
docker: fix stopping for artifacts with '--name='
cli: allow specifying target dir during atomic run
cli: add --namespace option to cli
Allow users to provide answers file as url.
Create destination app_path dir if it doesn't exist yet.
Ratnadeep Debnath <rtnpro@gmail.com>:
Support specifying default provider in Nulecule spec file. Fixes #378
Tomas Kral <tkral@redhat.com>:
openshift provider: safer stop
openshift provider: fix typos, add more explanation
openshift provider: remove acronyms from comments
```

## Atomic App 0.3.1 (01-14-2016)

This release introduces some significant features to Atomic App as well as our first release since 0.3.0.
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.3.1"
ENV ATOMICAPPVERSION="0.4.0"

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.3.1"
ENV ATOMICAPPVERSION="0.4.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 NAME=\${NAME} -e IMAGE=\${IMAGE} \${IMAGE} -v \${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.3.1"
ENV ATOMICAPPVERSION="0.4.0"

LABEL io.projectatomic.nulecule.atomicappversion=${ATOMICAPPVERSION} \
io.openshift.generate.job=true \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Atomic App is a reference implementation of the [Nulecule Specification](http://
Atomic App is packaged as a container. End-users typically do not install the software from source. Instead use the atomicapp container as the `FROM` line in a Dockerfile and package your application on top. For example:

```
FROM projectatomic/atomicapp:0.3.1
FROM projectatomic/atomicapp:0.4.0
MAINTAINER Your Name <you@example.com>
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.3.1'
__ATOMICAPPVERSION__ = '0.4.0'
__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.3.1',
version='0.4.0',
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 7673e09

Please sign in to comment.