Skip to content

Commit 03535a6

Browse files
committed
Merge pull request #1027 from aanand/ship-1.1.0
Ship 1.1.0
2 parents 72003de + 4ac02bf commit 03535a6

4 files changed

Lines changed: 7 additions & 20 deletions

File tree

CHANGES.md

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,8 @@
11
Change log
22
==========
33

4-
1.1.0-rc2 (2015-01-29)
5-
----------------------
6-
7-
On top of the changelog for 1.1.0-rc1 (see below), the following bugs have been fixed:
8-
9-
- When an environment variables file specified with `env_file` doesn't exist, Compose was showing a stack trace instead of a helpful error.
10-
11-
- 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.
12-
13-
- Bash tab completion now reads `fig.yml` if it's present.
14-
15-
Thanks, @dnephin and @albers!
16-
17-
1.1.0-rc1 (2015-01-20)
18-
----------------------
4+
1.1.0 (2015-02-25)
5+
------------------
196

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

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

4229
- 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.
4330

44-
- 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
31+
- 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
4532

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

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

compose/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from __future__ import unicode_literals
22
from .service import Service # noqa:flake8
33

4-
__version__ = '1.1.0-rc2'
4+
__version__ = '1.1.0'

docs/completion.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ On a Mac, install with `brew install bash-completion`
1717

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

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

2222
Completion will be available upon next login.
2323

docs/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ For complete instructions, or if you are on another platform, consult Docker's
2929

3030
To install Compose, run the following commands:
3131

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

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

0 commit comments

Comments
 (0)