From 7617870960ea7ee24ffc250191fb678f50100b40 Mon Sep 17 00:00:00 2001
From: Adar Nimrod <nimrod@shore.co.il>
Date: Tue, 8 Mar 2016 18:40:07 +0200
Subject: [PATCH] - Store version in VERSION file.

---
 VERSION  | 1 +
 setup.py | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)
 create mode 100644 VERSION

diff --git a/VERSION b/VERSION
new file mode 100644
index 0000000..7dff5b8
--- /dev/null
+++ b/VERSION
@@ -0,0 +1 @@
+0.2.1
\ No newline at end of file
diff --git a/setup.py b/setup.py
index bdec6da..c2e99c7 100644
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@ from setuptools import setup, find_packages
 
 setup(
     name='unshare',
-    version='0.2.0',
+    version=open('VERSION', 'r').read(),
     description='Pure Python Linux namespace management.',
     long_description=open('README.rst', 'r').read(),
     url='https://www.shore.co.il/git/python-unshare',
-- 
GitLab