Skip to content

Commit e19e5a2

Browse files
committed
Release version 0.1.0
1 parent fc7161b commit e19e5a2

File tree

3 files changed

+30
-9
lines changed

3 files changed

+30
-9
lines changed

CHANGES.rst

Lines changed: 28 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,43 @@
11
Changelog
22
=========
33

4-
0.0.4 (2013-11-19)
4+
0.1.0 (2018-12-12)
55
------------------
66

7-
- Allow passing in a custom config parser
7+
- Feat: add release script. [Jose Diaz-Gonzalez]
88

9-
0.0.3 (2013-05-22)
9+
- Add support for Python 3 (up to Python 3.7) [Xavier Hardy]
10+
11+
Add tox.ini file
12+
Add gitignore
13+
14+
15+
0.0.4 (2013-12-13)
1016
------------------
1117

12-
- Allow overriding the confd_path from an entry in the main config
18+
- Change assertDictEquals to assertEquals. [Clay Pence]
19+
20+
- Allow using custom config parser. [Clay Pence]
21+
22+
Instead of using ConfigParser.ConfigParser, let the user pass
23+
in a parser.
24+
25+
26+
0.0.3 (2013-05-23)
27+
------------------
28+
29+
- Allow overriding the confd_path from an entry in the main config.
30+
[Jose Diaz-Gonzalez]
1331

1432
0.0.2 (2013-04-18)
1533
------------------
1634

17-
- Fix issue where main section was not always created
35+
- Fix issue where main section was not always created. [Jose Diaz-
36+
Gonzalez]
1837

19-
0.0.1 (2013-04-13)
38+
0.0.1 (2013-04-14)
2039
------------------
2140

22-
- Initial commit
41+
- Initial commit. [Jose Diaz-Gonzalez]
42+
43+

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ From Github::
2020

2121
From PyPI::
2222

23-
pip install conf_d==0.0.5
23+
pip install conf_d==0.1.0
2424

2525
Usage
2626
=====

conf_d/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
from conf_d.compat import ConfigParser
55

6-
__version__ = '0.0.5'
6+
__version__ = '0.1.0'
77

88

99
class Configuration():

0 commit comments

Comments
 (0)