Skip to content

Commit

Permalink
bump version for release
Browse files Browse the repository at this point in the history
* NEWS: Mention python 3 support
  • Loading branch information
pixelb committed Aug 30, 2019
1 parent 9500e0b commit 235aa6e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = crudini
version = 0.9
version = 0.9.3

all:
help2man -n "manipulate ini files" -o crudini.1 -N ./crudini-help
Expand Down
6 changes: 5 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
crudini NEWS -*- outline -*-

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

** Bug fixes

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

** Improvements

python 3 support.


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

Expand Down
2 changes: 1 addition & 1 deletion crudini
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ Options:
if o in ('--help',):
self.usage(0)
elif o in ('--version',):
print('crudini 0.9')
print('crudini 0.9.3')
sys.exit(0)
elif o in ('--verbose',):
self.verbose = True
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def read(fname):

setup(
name="crudini",
version="0.9",
version="0.9.3",
author="Pádraig Brady",
author_email="P@draigBrady.com",
description=("A utility for manipulating ini files"),
Expand Down

0 comments on commit 235aa6e

Please sign in to comment.