From 6f1f019ae85bea20cdba85b6a4427255f38b49cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A1draig=20Brady?= Date: Sun, 14 Jun 2015 01:27:42 +0100 Subject: [PATCH] bump version for release --- Makefile | 2 +- NEWS | 2 +- crudini | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 869c2e5..e757211 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ name = crudini -version = 0.6 +version = 0.7 all: help2man -n "manipulate ini files" -o crudini.1 -N ./crudini-help diff --git a/NEWS b/NEWS index e0546a9..5ee6749 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,6 @@ crudini NEWS -*- outline -*- -* Noteworthy changes in release 0.6 (2015-06-12) +* Noteworthy changes in release 0.7 (2015-06-14) ** Bug fixes diff --git a/crudini b/crudini index 3887f95..b9d6d79 100755 --- a/crudini +++ b/crudini @@ -460,7 +460,7 @@ Options: if o in ('--help',): self.usage(0) elif o in ('--version',): - print 'crudini 0.6' + print 'crudini 0.7' sys.exit(0) elif o in ('--verbose',): self.verbose = True diff --git a/setup.py b/setup.py index 64d7eaa..ae4e143 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ def read(fname): setup( name="crudini", - version="0.6", + version="0.7", author="Pádraig Brady", author_email="P@draigBrady.com", description=("A utility for manipulating ini files"),