File tree Expand file tree Collapse file tree 4 files changed +17
-3
lines changed Expand file tree Collapse file tree 4 files changed +17
-3
lines changed Original file line number Diff line number Diff line change 1
1
name = crudini
2
- version = 0.7
2
+ version = 0.8
3
3
4
4
all :
5
5
help2man -n " manipulate ini files" -o crudini.1 -N ./crudini-help
Original file line number Diff line number Diff line change 1
1
crudini NEWS -*- outline -*-
2
2
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
+
3
17
* Noteworthy changes in release 0.7 (2015-06-14)
4
18
5
19
** Bug fixes
Original file line number Diff line number Diff line change @@ -474,7 +474,7 @@ Options:
474
474
if o in ('--help' ,):
475
475
self .usage (0 )
476
476
elif o in ('--version' ,):
477
- print 'crudini 0.7 '
477
+ print 'crudini 0.8 '
478
478
sys .exit (0 )
479
479
elif o in ('--verbose' ,):
480
480
self .verbose = True
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ def read(fname):
9
9
10
10
setup (
11
11
name = "crudini" ,
12
- version = "0.7 " ,
12
+ version = "0.8 " ,
13
13
author = "Pádraig Brady" ,
14
14
15
15
description = ("A utility for manipulating ini files" ),
You can’t perform that action at this time.
0 commit comments