summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2013-10-26 22:57:47 +0100
committerLars Wirzenius <liw@liw.fi>2013-10-26 22:57:47 +0100
commit6a5784a44511ec930ae96e1ba4dc181a77ba4e8f (patch)
treef77178f469e9ec97e27981a0442e2c840d7f012a
parent54291d325c2eec72ff56ce283398bcf6b3e12361 (diff)
parent0bc3dbfc1fc101a372572aab597175aad45c0be7 (diff)
downloadvmdebootstrap-6a5784a44511ec930ae96e1ba4dc181a77ba4e8f.tar.gz
Merge branch 'master' of git://git.liw.fi/vmdebootstrap
-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 1de3e56..5f01f5a 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):
@@ -467,5 +470,5 @@ append initrd=%(initrd)s root=UUID=%(uuid)s ro %(kserial)s
if __name__ == '__main__':
- VmDebootstrap().run()
+ VmDebootstrap(version=__version__).run()