Skip to content

Commit

Permalink
Merge branch 'release/0.8.0' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
klen committed Jun 15, 2014
2 parents 2f4c88d + dba75d6 commit 13028f9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
5 changes: 4 additions & 1 deletion Changelog
@@ -1,7 +1,10 @@
2014-06-15 horneds

* Supports hyphens

2014-06-08 horneds

* Supports continuation values
* Version 0.7.0

2014-05-05 horneds

Expand Down
13 changes: 7 additions & 6 deletions inirama.py
Expand Up @@ -16,6 +16,13 @@
"""
from __future__ import unicode_literals, print_function


__version__ = "0.8.0"
__project__ = "Inirama"
__author__ = "Kirill Klenov <horneds@gmail.com>"
__license__ = "BSD"


import io
import re
import logging
Expand Down Expand Up @@ -66,12 +73,6 @@ def keys(self):
iteritems = DictMixin.iteritems


__version__ = "0.7.0"
__project__ = "Inirama"
__author__ = "Kirill Klenov <horneds@gmail.com>"
__license__ = "BSD"


NS_LOGGER = logging.getLogger('inirama')


Expand Down

0 comments on commit 13028f9

Please sign in to comment.