Skip to content

Commit b53f4bb

Browse files
committed
bump version for release
1 parent 58118c2 commit b53f4bb

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = crudini
2-
version = 0.7
2+
version = 0.8
33

44
all:
55
help2man -n "manipulate ini files" -o crudini.1 -N ./crudini-help

NEWS

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
crudini NEWS -*- outline -*-
22

3+
* Noteworthy changes in release 0.8 (2016-11-23)
4+
5+
** Bug fixes
6+
7+
crudini now handles parameters starting with "rem".
8+
Previously an entry such as "remote = 1" would be ignored.
9+
10+
** New features
11+
12+
Support mercurial config files by treating lines starting
13+
with '%' as comments, thus ignoring mercurial '%include'
14+
and '%unset' directives.
15+
16+
317
* Noteworthy changes in release 0.7 (2015-06-14)
418

519
** Bug fixes

crudini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ Options:
474474
if o in ('--help',):
475475
self.usage(0)
476476
elif o in ('--version',):
477-
print 'crudini 0.7'
477+
print 'crudini 0.8'
478478
sys.exit(0)
479479
elif o in ('--verbose',):
480480
self.verbose = True

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def read(fname):
99

1010
setup(
1111
name="crudini",
12-
version="0.7",
12+
version="0.8",
1313
author="Pádraig Brady",
1414
author_email="[email protected]",
1515
description=("A utility for manipulating ini files"),

0 commit comments

Comments
 (0)