Skip to content

Commit ee17cf4

Browse files
Merge pull request docker-archive-public#3355 from nathanleclaire/bump_version_in_instal_doc
Bump version in install doc
2 parents 6204980 + a3af149 commit ee17cf4

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

docs/RELEASE.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ Machine core maintainers who might find themselves performing a release.
3434
the `CHANGELOG.md` file in the repository.
3535
5. **Update the Documentation** -- Ensure that the `docs` branch on GitHub
3636
(which the Docker docs team uses to deploy from) is up to date with the
37-
changes to be deployed from the release branch / master.
37+
changes to be deployed from the release branch / master. Make sure to
38+
update `docs/install-machine.md` to have the correct version as well.
3839
6. **Verify the Installation** -- Copy and paste the suggested commands in the
3940
installation notes to ensure that they work properly. Best of all, grab an
4041
(uninvolved) buddy and have them try it. `docker-machine -v` should give

docs/install-machine.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,21 +29,21 @@ If you want only Docker Machine, you can install the Machine binaries directly b
2929

3030
If you are running OS X or Linux:
3131

32-
$ curl -L https://github.com/docker/machine/releases/download/v0.6.0/docker-machine-`uname -s`-`uname -m` > /usr/local/bin/docker-machine && \
32+
$ curl -L https://github.com/docker/machine/releases/download/v0.7.0/docker-machine-`uname -s`-`uname -m` > /usr/local/bin/docker-machine && \
3333
chmod +x /usr/local/bin/docker-machine
3434

3535
If you are running Windows with git bash
3636

3737
$ if [[ ! -d "$HOME/bin" ]]; then mkdir -p "$HOME/bin"; fi && \
38-
curl -L https://github.com/docker/machine/releases/download/v0.6.0/docker-machine-Windows-x86_64.exe > "$HOME/bin/docker-machine.exe" && \
38+
curl -L https://github.com/docker/machine/releases/download/v0.7.0/docker-machine-Windows-x86_64.exe > "$HOME/bin/docker-machine.exe" && \
3939
chmod +x "$HOME/bin/docker-machine.exe"
4040

4141
Otherwise, download one of the releases from the <a href="https://github.com/docker/machine/releases/" target="_blank"> docker/machine release page</a> directly.
4242

4343
3. Check the installation by displaying the Machine version:
4444

4545
$ docker-machine version
46-
docker-machine version 0.6.0, build 61388e9
46+
docker-machine version 0.7.0, build 61388e9
4747

4848
## Installing bash completion scripts
4949

0 commit comments

Comments
 (0)