diff --git a/.goxc.json b/.goxc.json index a7da7633..d23a1058 100644 --- a/.goxc.json +++ b/.goxc.json @@ -14,10 +14,10 @@ "downloads-page", "publish-github" ], - "BuildConstraints": "darwin linux windows freebsd", + "BuildConstraints": "darwin linux freebsd", "ResourcesExclude": "*.go .goxc-temp", "MainDirsExclude": "vendor,Godeps,testdata", - "PackageVersion": "1.1.0+dev", + "PackageVersion": "1.2.0", "TaskSettings": { "xc": { "GOARM": "5" diff --git a/README.md b/README.md index 57eaf22a..d284dc5b 100644 --- a/README.md +++ b/README.md @@ -169,7 +169,7 @@ docker-machine create -d scaleway \ --scaleway-commercial-type="VC1S" \ --swarm --swarm-discovery="XXX" my-swarm-node - + # create a docker host on the different server offers docker-machine create -d scaleway --scaleway-commercial-type="VC1S" my-vc1s-node docker-machine create -d scaleway --scaleway-commercial-type="VC1M" --scaleway-volumes="50G" my-vc1m-node @@ -185,12 +185,12 @@ More [examples](https://github.com/scaleway/docker-machine-driver-scaleway/tree/ ## Changelog -### master (unreleased) +### v1.2.0 (2016-05-08) * Add `--scaleway-volumes` ([#37](https://github.com/scaleway/docker-machine-driver-scaleway/issues/37)) * Add `--scaleway-ip` ([#40](https://github.com/scaleway/docker-machine-driver-scaleway/issues/40)) -View full [commits list](https://github.com/scaleway/docker-machine-driver-scaleway/compare/v1.1.0...master) +View full [commits list](https://github.com/scaleway/docker-machine-driver-scaleway/compare/v1.1.0...v1.2.0) ### v1.1.0 (2016-04-28) diff --git a/driver/scaleway.go b/driver/scaleway.go index 3a50cb37..bcd7fb17 100644 --- a/driver/scaleway.go +++ b/driver/scaleway.go @@ -22,7 +22,7 @@ import ( const ( // VERSION represents the semver version of the package - VERSION = "v1.1.0+dev" + VERSION = "v1.2.0" defaultImage = "ubuntu-xenial" defaultBootscript = "docker" )