From: Lars Wirzenius Date: Tue, 23 Jul 2013 11:35:35 +0000 (+0100) Subject: Release version 0.1.0 X-Git-Url: https://git.siccegge.de//index.cgi?p=forks%2Fvmdebootstrap.git;a=commitdiff_plain;h=0bc3dbfc1fc101a372572aab597175aad45c0be7 Release version 0.1.0 --- diff --git a/NEWS b/NEWS new file mode 100644 index 0000000..ef57e11 --- /dev/null +++ b/NEWS @@ -0,0 +1,7 @@ +NEWS for vmdebootstrap +====================== + +Version 0.1.0, released 2013-07-23 +---------------------------------- + +* First actual release. diff --git a/vmdebootstrap b/vmdebootstrap index a7a67e1..a5537b7 100755 --- a/vmdebootstrap +++ b/vmdebootstrap @@ -25,6 +25,9 @@ import subprocess import tempfile +__version__ = '0.1.0' + + class VmDebootstrap(cliapp.Application): def add_settings(self): @@ -404,5 +407,5 @@ append initrd=%(initrd)s root=UUID=%(uuid)s ro %(kserial)s if __name__ == '__main__': - VmDebootstrap().run() + VmDebootstrap(version=__version__).run()