Update CHANGELOG
This commit is contained in:
parent
4e75e39ee5
commit
aed61291e8
|
@ -6,6 +6,7 @@ FEATURES:
|
||||||
syncing folders to be added as plugins to Vagrant.
|
syncing folders to be added as plugins to Vagrant.
|
||||||
- The `--debug` flag can be specified on any command now to get debug-level
|
- The `--debug` flag can be specified on any command now to get debug-level
|
||||||
log output to ease reporting bugs.
|
log output to ease reporting bugs.
|
||||||
|
- You can now specify a memory using `vb.memory` setting with VirtualBox.
|
||||||
|
|
||||||
IMPROVEMENTS:
|
IMPROVEMENTS:
|
||||||
|
|
||||||
|
|
|
@ -81,7 +81,7 @@ module VagrantPlugins
|
||||||
#
|
#
|
||||||
# @param size [Integer, String] the memory size in MB
|
# @param size [Integer, String] the memory size in MB
|
||||||
def memory=(size)
|
def memory=(size)
|
||||||
customize "pre-boot", ["modifyvm", :id, "--memory", size]
|
customize("pre-boot", ["modifyvm", :id, "--memory", size.to_s])
|
||||||
end
|
end
|
||||||
|
|
||||||
# This is the hook that is called to finalize the object before it
|
# This is the hook that is called to finalize the object before it
|
||||||
|
|
Loading…
Reference in New Issue