Skip to content

Commit 07c4742

Browse files
committed
Merge pull request #358 from orchardup/ship-0.5.2
Ship 0.5.2
2 parents 0dc55fd + a6324d6 commit 07c4742

3 files changed

Lines changed: 14 additions & 3 deletions

File tree

CHANGES.md

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

4+
0.5.2 (2014-07-28)
5+
------------------
6+
7+
- Added a `--no-cache` option to `fig build`, which bypasses the cache just like `docker build --no-cache`.
8+
- Fixed the `dns:` fig.yml option, which was causing fig to error out.
9+
- Fixed a bug where fig couldn't start under Python 2.6.
10+
- Fixed a log-streaming bug that occasionally caused fig to exit.
11+
12+
Thanks @dnephin and @marksteve!
13+
14+
415
0.5.1 (2014-07-11)
516
------------------
617

docs/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ Docker has guides for [Ubuntu](http://docs.docker.io/en/latest/installation/ubun
1616

1717
Next, install Fig. On OS X:
1818

19-
$ curl -L https://github.com/orchardup/fig/releases/download/0.5.1/darwin > /usr/local/bin/fig
19+
$ curl -L https://github.com/orchardup/fig/releases/download/0.5.2/darwin > /usr/local/bin/fig
2020
$ chmod +x /usr/local/bin/fig
2121

2222
On 64-bit Linux:
2323

24-
$ curl -L https://github.com/orchardup/fig/releases/download/0.5.1/linux > /usr/local/bin/fig
24+
$ curl -L https://github.com/orchardup/fig/releases/download/0.5.2/linux > /usr/local/bin/fig
2525
$ chmod +x /usr/local/bin/fig
2626

2727
Fig is also available as a Python package if you're on another platform (or if you prefer that sort of thing):

fig/__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
33

4-
__version__ = '0.5.1'
4+
__version__ = '0.5.2'

0 commit comments

Comments
 (0)