Skip to content

Commit

Permalink
v0.7.0 — parse() objects and PropertiesFile properties
Browse files Browse the repository at this point in the history
- `parse()` now accepts strings as input
- **Breaking**: `parse()` now returns a generator of custom objects instead of triples of strings
- Gave `PropertiesFile` a settable `timestamp` property
- Gave `PropertiesFile` a settable `header_comment` property
- Handle unescaping surrogate pairs on narrow Python builds
  • Loading branch information
jwodder committed Mar 9, 2020
1 parent 684be89 commit c845359
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
v0.7.0 (in development)
-----------------------
v0.7.0 (2020-03-09)
-------------------
- `parse()` now accepts strings as input
- **Breaking**: `parse()` now returns a generator of custom objects instead of
triples of strings
Expand Down
4 changes: 2 additions & 2 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
Changelog
=========

v0.7.0 (in development)
-----------------------
v0.7.0 (2020-03-09)
-------------------
- `parse()` now accepts strings as input
- **Breaking**: `parse()` now returns a generator of custom objects instead of
triples of strings
Expand Down
2 changes: 1 addition & 1 deletion javaproperties/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
to_comment
from .xmlprops import load_xml, loads_xml, dump_xml, dumps_xml

__version__ = '0.7.0.dev1'
__version__ = '0.7.0'
__author__ = 'John Thorvald Wodder II'
__author_email__ = '[email protected]'
__license__ = 'MIT'
Expand Down

0 comments on commit c845359

Please sign in to comment.