Skip to content

Commit 235aa6e

Browse files
committed
bump version for release
* NEWS: Mention python 3 support
1 parent 9500e0b commit 235aa6e

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
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.9
2+
version = 0.9.3
33

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

NEWS

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
crudini NEWS -*- outline -*-
22

3-
* Noteworthy changes in release ?.? (????-??-??)
3+
* Noteworthy changes in release 0.9.3 (2019-08-30)
44

55
** Bug fixes
66

77
Reading ini files with windows line endings is again supported.
88
Regression added in v0.9.
99

10+
** Improvements
11+
12+
python 3 support.
13+
1014

1115
* Noteworthy changes in release 0.9 (2016-12-13)
1216

crudini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,7 @@ Options:
509509
if o in ('--help',):
510510
self.usage(0)
511511
elif o in ('--version',):
512-
print('crudini 0.9')
512+
print('crudini 0.9.3')
513513
sys.exit(0)
514514
elif o in ('--verbose',):
515515
self.verbose = True

setup.py

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

1111
setup(
1212
name="crudini",
13-
version="0.9",
13+
version="0.9.3",
1414
author="Pádraig Brady",
1515
author_email="[email protected]",
1616
description=("A utility for manipulating ini files"),

0 commit comments

Comments
 (0)