mirror of https://github.com/docker/docs.git
Merge pull request #3510 from nathanleclaire/0.8.0-script
0.8.0 release tasks
This commit is contained in:
commit
bca4af7130
28
CHANGELOG.md
28
CHANGELOG.md
|
|
@ -1,5 +1,33 @@
|
|||
# Changelog
|
||||
|
||||
# 0.8.0 (2016-6-14)
|
||||
|
||||
General
|
||||
- Fix issue with plugin heartbeat log repeating on disconnect
|
||||
- Add `tcsh` support to `env --shell`
|
||||
- Add `zsh` completion scripts
|
||||
- Bump Go version to 1.6.2
|
||||
|
||||
Drivers
|
||||
- `amazonec2`
|
||||
- Workaround to prevent orphaned SSH keys
|
||||
- `virtualbox`
|
||||
- Add option for VM UI type (`--virtualbox-ui-type`)
|
||||
- `vmwarefusion`
|
||||
- Fix CPU option inconsistency
|
||||
- `openstack`
|
||||
- Expose user data parameter (`--openstack-user-data-file`)
|
||||
- `generic`
|
||||
- Copy public key to created Machine directory
|
||||
|
||||
Provisioners
|
||||
- Add Oracle Enterprise Linux support
|
||||
- Fix port binding of Swarm master
|
||||
- Add ability to create a manager instance which does not get scheduled on
|
||||
- Introduce `--swarm-join-opt` to pass options to agent nodes
|
||||
- Various SSH-related fixes
|
||||
- Fix state for upgrade path
|
||||
|
||||
# 0.7.0 (2016-4-13)
|
||||
|
||||
General
|
||||
|
|
|
|||
|
|
@ -120,7 +120,7 @@ display "Bump version number to ${VERSION}"
|
|||
# Why 'sed' and then 'mv' instead of 'sed -i'? BSD / GNU sed compatibility.
|
||||
# Macs have BSD sed by default, Linux has GNU sed. See
|
||||
# http://unix.stackexchange.com/questions/92895/how-to-achieve-portability-with-sed-i-in-place-editing
|
||||
sed -e "s/Version = \".*-dev\"/Version = \"${VERSION}\"/g" version/version.go >version/version.go.new
|
||||
sed -e "s/Version = \".*\"$/Version = \"${VERSION}\"/g" version/version.go >version/version.go.new
|
||||
checkError "Unable to change version in version/version.go"
|
||||
mv -- version/version.go.new version/version.go
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue