diff --git a/docs/RELEASE.md b/docs/RELEASE.md index 13ad2a650f..4f3c86e3fd 100644 --- a/docs/RELEASE.md +++ b/docs/RELEASE.md @@ -34,7 +34,8 @@ Machine core maintainers who might find themselves performing a release. the `CHANGELOG.md` file in the repository. 5. **Update the Documentation** -- Ensure that the `docs` branch on GitHub (which the Docker docs team uses to deploy from) is up to date with the - changes to be deployed from the release branch / master. + changes to be deployed from the release branch / master. Make sure to + update `docs/install-machine.md` to have the correct version as well. 6. **Verify the Installation** -- Copy and paste the suggested commands in the installation notes to ensure that they work properly. Best of all, grab an (uninvolved) buddy and have them try it. `docker-machine -v` should give diff --git a/docs/install-machine.md b/docs/install-machine.md index 00fdd64a72..5f92e32b8f 100644 --- a/docs/install-machine.md +++ b/docs/install-machine.md @@ -29,13 +29,13 @@ If you want only Docker Machine, you can install the Machine binaries directly b If you are running OS X or Linux: - $ curl -L https://github.com/docker/machine/releases/download/v0.6.0/docker-machine-`uname -s`-`uname -m` > /usr/local/bin/docker-machine && \ + $ curl -L https://github.com/docker/machine/releases/download/v0.7.0/docker-machine-`uname -s`-`uname -m` > /usr/local/bin/docker-machine && \ chmod +x /usr/local/bin/docker-machine If you are running Windows with git bash $ if [[ ! -d "$HOME/bin" ]]; then mkdir -p "$HOME/bin"; fi && \ - curl -L https://github.com/docker/machine/releases/download/v0.6.0/docker-machine-Windows-x86_64.exe > "$HOME/bin/docker-machine.exe" && \ + curl -L https://github.com/docker/machine/releases/download/v0.7.0/docker-machine-Windows-x86_64.exe > "$HOME/bin/docker-machine.exe" && \ chmod +x "$HOME/bin/docker-machine.exe" Otherwise, download one of the releases from the docker/machine release page directly. @@ -43,7 +43,7 @@ If you want only Docker Machine, you can install the Machine binaries directly b 3. Check the installation by displaying the Machine version: $ docker-machine version - docker-machine version 0.6.0, build 61388e9 + docker-machine version 0.7.0, build 61388e9 ## Installing bash completion scripts