Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/PKGNAME1
-rw-r--r--config/VERSION1
-rwxr-xr-xconfig/bump_version6
3 files changed, 8 insertions, 0 deletions
diff --git a/config/PKGNAME b/config/PKGNAME
new file mode 100644
index 0000000..527d8e1
--- /dev/null
+++ b/config/PKGNAME
@@ -0,0 +1 @@
+rainbow
diff --git a/config/VERSION b/config/VERSION
new file mode 100644
index 0000000..7fc2521
--- /dev/null
+++ b/config/VERSION
@@ -0,0 +1 @@
+0.8.6
diff --git a/config/bump_version b/config/bump_version
new file mode 100755
index 0000000..1c190a2
--- /dev/null
+++ b/config/bump_version
@@ -0,0 +1,6 @@
+#!/usr/bin/env python
+
+s = open('config/VERSION').read().strip().split('.')
+nv = '.'.join(s[:-1] + [str(int(s[-1] or "0")+1)])
+print nv
+open('config/VERSION', 'w').write(nv+"\n")