File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11Change 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+
4150.5.1 (2014-07-11)
516------------------
617
Original file line number Diff line number Diff line change @@ -16,12 +16,12 @@ Docker has guides for [Ubuntu](http://docs.docker.io/en/latest/installation/ubun
1616
1717Next, 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
2222On 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
2727Fig is also available as a Python package if you're on another platform (or if you prefer that sort of thing):
Original file line number Diff line number Diff line change 11from __future__ import unicode_literals
22from .service import Service
33
4- __version__ = '0.5.1 '
4+ __version__ = '0.5.2 '
You can’t perform that action at this time.
0 commit comments