From 0bc3dbfc1fc101a372572aab597175aad45c0be7 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Tue, 23 Jul 2013 12:35:35 +0100 Subject: [PATCH] Release version 0.1.0 --- NEWS | 7 +++++++ vmdebootstrap | 5 ++++- 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 NEWS 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() -- 2.39.2