Skip to content

Commit 54a040d

Browse files
committed
v0.9.6
1 parent d88fb40 commit 54a040d

File tree

3 files changed

+18
-10
lines changed

3 files changed

+18
-10
lines changed

CHANGES.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changes
22

3+
## v0.9.6
4+
5+
* Restore ability to use image defaults for CPU / RAM configuration (DimensionDataResearch/docker-machine-driver-ddcloud#14).
6+
7+
## v0.9.5
8+
9+
* Ability to customise target machine's CPU / RAM configuration (DimensionDataResearch/docker-machine-driver-ddcloud#13).
10+
311
## v0.9.4
412

513
Enhancements:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = 0.9.5
1+
VERSION = 0.9.6
22

33
default: fmt build test
44

driver.go

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -209,19 +209,19 @@ func (driver *Driver) GetCreateFlags() []mcnflag.Flag {
209209
Usage: "Don't create NAT and firewall rules for target server (you will need to be connected to the VPN for your target data centre). Default: false",
210210
},
211211
mcnflag.IntFlag{
212-
Name: "ddcloud-memorygb",
213-
Usage: "The amount of RAM in GB for the target machine. Default: 4",
214-
Value: 4,
212+
Name: "ddcloud-memorygb",
213+
Usage: "The amount of RAM in GB for the target machine. Default: 4",
214+
Value: 4,
215215
},
216216
mcnflag.IntFlag{
217-
Name: "ddcloud-cpucount",
218-
Usage: "The amount of CPUs for the target machine. Default: 2",
219-
Value: 2,
217+
Name: "ddcloud-cpucount",
218+
Usage: "The amount of CPUs for the target machine. Default: 2",
219+
Value: 2,
220220
},
221221
mcnflag.IntFlag{
222-
Name: "ddcloud-corespersocket",
223-
Usage: "The amount of cores per socket for the target machine. Default: 2",
224-
Value: 2,
222+
Name: "ddcloud-corespersocket",
223+
Usage: "The amount of cores per socket for the target machine. Default: 2",
224+
Value: 2,
225225
},
226226
}
227227
}

0 commit comments

Comments
 (0)