File tree Expand file tree Collapse file tree 4 files changed +23
-2
lines changed Expand file tree Collapse file tree 4 files changed +23
-2
lines changed Original file line number Diff line number Diff line change 1
1
name = crudini
2
- version = 0.9.3
2
+ version = 0.9.4
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.9.4 (2022-12-23)
4
+
5
+ ** Bug fixes
6
+
7
+ Fix updating of flag only parameters so they
8
+ don't have '=' or '=crudini_no_arg' added added on update.
9
+
10
+ Handle closed stdin/stdout gracefully, without giving errors.
11
+
12
+ ** Improvements
13
+
14
+ Windows support.
15
+
16
+ Windows line endings are maintained.
17
+
18
+ Lists can be delimited with arbitrary whitespace with `--list-sep=`.
19
+
20
+ Support for unspaced "name=val" format with `--ini-options=nospace`.
21
+
22
+
3
23
* Noteworthy changes in release 0.9.3 (2019-08-30)
4
24
5
25
** Bug fixes
Original file line number Diff line number Diff line change @@ -615,7 +615,7 @@ def parse_options(self):
615
615
if o in ('--help' ,):
616
616
self .usage (0 )
617
617
elif o in ('--version' ,):
618
- print ('crudini 0.9.3 ' )
618
+ print ('crudini 0.9.4 ' )
619
619
sys .exit (0 )
620
620
elif o in ('--verbose' ,):
621
621
self .verbose = True
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ name = crudini
3
3
author = Pádraig Brady
4
4
5
5
license = GPLv2
6
+ version = 0.9.4
6
7
description = A utility for manipulating ini files
7
8
keywords = ini, config, edit
8
9
url = http://github.com/pixelb/crudini
You can’t perform that action at this time.
0 commit comments