Skip to content

Commit

Permalink
bump version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
pixelb committed Nov 23, 2016
1 parent 58118c2 commit b53f4bb
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 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.7
version = 0.8

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

* Noteworthy changes in release 0.8 (2016-11-23)

** Bug fixes

crudini now handles parameters starting with "rem".
Previously an entry such as "remote = 1" would be ignored.

** New features

Support mercurial config files by treating lines starting
with '%' as comments, thus ignoring mercurial '%include'
and '%unset' directives.


* Noteworthy changes in release 0.7 (2015-06-14)

** Bug fixes
Expand Down
2 changes: 1 addition & 1 deletion crudini
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ Options:
if o in ('--help',):
self.usage(0)
elif o in ('--version',):
print 'crudini 0.7'
print 'crudini 0.8'
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 @@ -9,7 +9,7 @@ def read(fname):

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

0 comments on commit b53f4bb

Please sign in to comment.