Skip to content

Commit

Permalink
Merge pull request #1027 from aanand/ship-1.1.0
Browse files Browse the repository at this point in the history
Ship 1.1.0
  • Loading branch information
bfirsh committed Feb 25, 2015
2 parents 72003de + 4ac02bf commit 03535a6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 20 deletions.
21 changes: 4 additions & 17 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,8 @@
Change log
==========

1.1.0-rc2 (2015-01-29)
----------------------

On top of the changelog for 1.1.0-rc1 (see below), the following bugs have been fixed:

- When an environment variables file specified with `env_file` doesn't exist, Compose was showing a stack trace instead of a helpful error.

- Configuration files using the old name (`fig.yml`) were not being read unless explicitly specified with `docker-compose -f`. Compose now reads them and prints a deprecation warning.

- Bash tab completion now reads `fig.yml` if it's present.

Thanks, @dnephin and @albers!

1.1.0-rc1 (2015-01-20)
----------------------
1.1.0 (2015-02-25)
------------------

Fig has been renamed to Docker Compose, or just Compose for short. This has several implications for you:

Expand All @@ -41,9 +28,9 @@ Besides that, there’s a lot of new stuff in this release:

- docker-compose.yml now supports the `dns_search`, `cap_add`, `cap_drop`, `cpu_shares` and `restart` options, analogous to `docker run`’s `--dns-search`, `--cap-add`, `--cap-drop`, `--cpu-shares` and `--restart` options.

- Compose now ships with Bash tab completion - see the installation and usage docs at https://github.com/docker/fig/blob/1.1.0-rc1/docs/completion.md
- Compose now ships with Bash tab completion - see the installation and usage docs at https://github.com/docker/compose/blob/1.1.0/docs/completion.md

- A number of bugs have been fixed - see the milestone for details: https://github.com/docker/fig/issues?q=milestone%3A1.1.0+
- A number of bugs have been fixed - see the milestone for details: https://github.com/docker/compose/issues?q=milestone%3A1.1.0+

Thanks @dnephin, @squebe, @jbalonso, @raulcd, @benlangfield, @albers, @ggtools, @bersace, @dtenenba, @petercv, @drewkett, @TFenby, @paulRbr, @Aigeruth and @salehe!

Expand Down
2 changes: 1 addition & 1 deletion compose/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from __future__ import unicode_literals
from .service import Service # noqa:flake8

__version__ = '1.1.0-rc2'
__version__ = '1.1.0'
2 changes: 1 addition & 1 deletion docs/completion.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ On a Mac, install with `brew install bash-completion`

Place the completion script in `/etc/bash_completion.d/` (`/usr/local/etc/bash_completion.d/` on a Mac), using e.g.

curl -L https://raw.githubusercontent.com/docker/compose/1.1.0-rc2/contrib/completion/bash/docker-compose > /etc/bash_completion.d/docker-compose
curl -L https://raw.githubusercontent.com/docker/compose/1.1.0/contrib/completion/bash/docker-compose > /etc/bash_completion.d/docker-compose

Completion will be available upon next login.

Expand Down
2 changes: 1 addition & 1 deletion docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ For complete instructions, or if you are on another platform, consult Docker's

To install Compose, run the following commands:

curl -L https://github.com/docker/compose/releases/download/1.1.0-rc2/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose
curl -L https://github.com/docker/compose/releases/download/1.1.0/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose

Optionally, you can also install [command completion](completion.md) for the
Expand Down

0 comments on commit 03535a6

Please sign in to comment.