From 9f0cfbdfd2a24d4b300fa03f9ffb2532bcb964b7 Mon Sep 17 00:00:00 2001 From: Ben Firshman Date: Fri, 11 Jul 2014 14:15:46 -0700 Subject: [PATCH 1/2] Document release process Signed-off-by: Ben Firshman --- CONTRIBUTING.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 5cc0dda05f..9e47481c52 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -73,3 +73,21 @@ The easiest way to do this is to use the `--signoff` flag when committing. E.g.: $ git commit --signoff + +## Release process + +1. Open pull request that: + + - Updates version in `fig/__init__.py` + - Updates version in `docs/install.md` + - Adds release notes to `CHANGES.md` + +2. Create unpublished GitHub release with release notes + +3. Build Linux version on any Docker host with `script/build-linux` and attach to release + +4. Build OS X version on Mountain Lion with `script/build-osx` and attach to release + +5. Publish GitHub release, creating tag + + From 36f4e30dbaa86495a097ecdc29dfcf334bbb1783 Mon Sep 17 00:00:00 2001 From: Ben Firshman Date: Fri, 11 Jul 2014 14:15:55 -0700 Subject: [PATCH 2/2] Add 0.5.0 to docs Signed-off-by: Ben Firshman --- docs/install.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/install.md b/docs/install.md index eca82ce299..5a86cf9365 100644 --- a/docs/install.md +++ b/docs/install.md @@ -16,12 +16,12 @@ Docker has guides for [Ubuntu](http://docs.docker.io/en/latest/installation/ubun Next, install Fig. On OS X: - $ curl -L https://github.com/orchardup/fig/releases/download/0.4.2/darwin > /usr/local/bin/fig + $ curl -L https://github.com/orchardup/fig/releases/download/0.5.0/darwin > /usr/local/bin/fig $ chmod +x /usr/local/bin/fig On 64-bit Linux: - $ curl -L https://github.com/orchardup/fig/releases/download/0.4.2/linux > /usr/local/bin/fig + $ curl -L https://github.com/orchardup/fig/releases/download/0.5.0/linux > /usr/local/bin/fig $ chmod +x /usr/local/bin/fig Fig is also available as a Python package if you're on another platform (or if you prefer that sort of thing):