Skip to content

Commit

Permalink
version bump to v1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
rossengeorgiev committed Jul 13, 2015
1 parent a2f330e commit f18fbcd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ VDF is Valve's KeyValue text file format

https://developer.valvesoftware.com/wiki/KeyValues

The module works just like ``json`` to convert VDF to a dict, and vise-versa.
The module works just like ``json`` for (de)serilization to and from VDF.


Problems & solutions
Expand All @@ -14,7 +14,7 @@ Problems & solutions
creating a class inheriting from ``dict`` and implementing a way to handle
duplicate keys. See example implementation of DuplicateOrderedDict_.

- By default parsing will return a ``dict``, which doesn't preserve nor guarantee
- By default deserialization will return a ``dict``, which doesn't preserve nor guarantee
key order due to `hash randomization`_. If key order is important then
I suggest using ``collections.OrderedDict`` as mapper. See example below.

Expand Down
2 changes: 1 addition & 1 deletion vdf/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Module for deserializing/serializing to and from VDF
"""
__version__ = "1.8"
__version__ = "1.9"
__author__ = "Rossen Georgiev"

import re
Expand Down

0 comments on commit f18fbcd

Please sign in to comment.