Skip to content

Commit 86d9762

Browse files
committed
Prepare for 0.12.4 release.
1 parent 4404195 commit 86d9762

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

NEWS

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
0.12.4:
2+
3+
* Revive firstscripts plugins. This fixes the --firstboot and --firstlogin
4+
options, both of which went missing with 0.12.
5+
* Make Plugin.install_file work in non-context plugins (plugins that are not
6+
Distros or Hypervisors).
7+
* Do a slightly better job at cleaning up after ourselves by removing the
8+
distro chroot by default and removing the temporary root mount point.
9+
* Revive QEMu hypervisor.
10+
111
0.12.3:
212

313
* Reworked the way timezones and locales are handled. This fixes an

VMBuilder/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def get_version_info():
128128
info = vcsversion.version_info
129129
info['major'] = 0
130130
info['minor'] = 12
131-
info['micro'] = 3
131+
info['micro'] = 4
132132
return info
133133

134134
logging.debug('Loading plugins')

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
print repr(e)
1616

1717
setup(name='VMBuilder',
18-
version='0.12.3',
18+
version='0.12.4',
1919
description='Uncomplicated VM Builder',
2020
author='Soren Hansen',
2121
author_email='[email protected]',

0 commit comments

Comments
 (0)