diff -Nru vm-builder-0.12.3+r443/debian/changelog vm-builder-0.12.4+r444/debian/changelog --- vm-builder-0.12.3+r443/debian/changelog 2010-05-28 10:00:42.000000000 +0100 +++ vm-builder-0.12.4+r444/debian/changelog 2010-05-28 10:00:43.000000000 +0100 @@ -1,3 +1,9 @@ +vm-builder (0.12.4+r444-0ubuntu0ppa1) lucid; urgency=low + + * Automated PPA build. + + -- Soren Hansen Fri, 28 May 2010 08:51:17 +0000 + vm-builder (0.12.3+r443-0ubuntu0ppa1) lucid; urgency=low * Automated PPA build. diff -Nru vm-builder-0.12.3+r443/NEWS vm-builder-0.12.4+r444/NEWS --- vm-builder-0.12.3+r443/NEWS 2010-05-23 11:45:58.000000000 +0100 +++ vm-builder-0.12.4+r444/NEWS 2010-05-28 09:51:11.000000000 +0100 @@ -1,3 +1,13 @@ +0.12.4: + + * Revive firstscripts plugins. This fixes the --firstboot and --firstlogin + options, both of which went missing with 0.12. + * Make Plugin.install_file work in non-context plugins (plugins that are not + Distros or Hypervisors). + * Do a slightly better job at cleaning up after ourselves by removing the + distro chroot by default and removing the temporary root mount point. + * Revive QEMu hypervisor. + 0.12.3: * Reworked the way timezones and locales are handled. This fixes an diff -Nru vm-builder-0.12.3+r443/PKG-INFO vm-builder-0.12.4+r444/PKG-INFO --- vm-builder-0.12.3+r443/PKG-INFO 2010-05-23 12:37:47.000000000 +0100 +++ vm-builder-0.12.4+r444/PKG-INFO 2010-05-28 09:51:14.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 1.0 Name: VMBuilder -Version: 0.12.3 +Version: 0.12.4 Summary: Uncomplicated VM Builder Home-page: http://launchpad.net/vmbuilder/ Author: Soren Hansen diff -Nru vm-builder-0.12.3+r443/setup.py vm-builder-0.12.4+r444/setup.py --- vm-builder-0.12.3+r443/setup.py 2010-05-23 11:45:58.000000000 +0100 +++ vm-builder-0.12.4+r444/setup.py 2010-05-28 09:51:11.000000000 +0100 @@ -15,7 +15,7 @@ print repr(e) setup(name='VMBuilder', - version='0.12.3', + version='0.12.4', description='Uncomplicated VM Builder', author='Soren Hansen', author_email='soren@ubuntu.com', diff -Nru vm-builder-0.12.3+r443/VMBuilder/__init__.py vm-builder-0.12.4+r444/VMBuilder/__init__.py --- vm-builder-0.12.3+r443/VMBuilder/__init__.py 2010-05-23 11:45:58.000000000 +0100 +++ vm-builder-0.12.4+r444/VMBuilder/__init__.py 2010-05-28 09:51:11.000000000 +0100 @@ -128,7 +128,7 @@ info = vcsversion.version_info info['major'] = 0 info['minor'] = 12 - info['micro'] = 3 + info['micro'] = 4 return info logging.debug('Loading plugins') diff -Nru vm-builder-0.12.3+r443/VMBuilder/vcsversion.py vm-builder-0.12.4+r444/VMBuilder/vcsversion.py --- vm-builder-0.12.3+r443/VMBuilder/vcsversion.py 2010-05-28 10:00:42.000000000 +0100 +++ vm-builder-0.12.4+r444/VMBuilder/vcsversion.py 2010-05-28 10:00:43.000000000 +0100 @@ -4,12 +4,12 @@ So don't edit it. :) """ -version_info = {'branch_nick': u'vmbuilder', - 'build_date': '2010-05-23 11:40:24 +0000', +version_info = {'branch_nick': u'0.12', + 'build_date': '2010-05-28 08:51:20 +0000', 'clean': None, - 'date': '2010-05-18 13:38:05 +0200', - 'revision_id': 'soren@linux2go.dk-20100518113805-kq1537jxj0t3u9ft', - 'revno': 443} + 'date': '2010-05-18 13:43:12 +0200', + 'revision_id': 'soren@linux2go.dk-20100518114312-9knzsw8j3hitv1h2', + 'revno': 444} revisions = {}