summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <lars.wirzenius@codethink.co.uk>2013-07-23 12:35:35 +0100
committerLars Wirzenius <lars.wirzenius@codethink.co.uk>2013-07-23 12:35:35 +0100
commit0bc3dbfc1fc101a372572aab597175aad45c0be7 (patch)
tree81e2f36c830700026c2dc63d3b465a50ea93a645
parentdbd91a3dcb756fc4ea4ba929bd026c8a06d1b24d (diff)
downloadvmdebootstrap-0bc3dbfc1fc101a372572aab597175aad45c0be7.tar.gz
Release version 0.1.0vmdebootstrap-0.1.0
-rw-r--r--NEWS7
-rwxr-xr-xvmdebootstrap5
2 files changed, 11 insertions, 1 deletions
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()