diff --git a/.travis.yml b/.travis.yml index 67127df..10a47cb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -34,3 +34,13 @@ after_success: notifications: email: false + +deploy: + provider: pypi + user: jirikuncar + password: + secure: y+GnRjWIBvpZLm4BfiwZuhIPx7n8KppAkODmbPOu/KMtapyF1qVpBJTUteoI6905SlvsNMOT4Buy754JLuUCbhSoqPR8c2wVvjl/oQKu2gzF+FLpiZ9cig2xYZMfny2OT9tphEC9zxqIJ6rcHMlfjOIELtn7nE33ZXZdS9ij31hSXq4/jC85xo4wpETH/x6nM6tS+E/eZ+i56l2K/Vq3qts7HZNKkjYT6jyVWfQC4gHeEYmrKYnFa2vfNBrtv3jdsyurYVbl1HKiE+vlaBTTAKFY77RbgfVJjbhfIpHbzrNHW3T5qdCEvQd/Uwz4NHKL2/c8D0D8mrllthygzfQ7Zj+fn1JIm3ptiH5OlmUL2jZGvAyeJDj2MxvKe4mWJbsing8N56+jIxm8Jh4Akj1EiHDEd5vy1emrzxbJ8HPzl8YZa4Xu7uCs+oaAruJjfyOL7w8d+1AvmxuxhDbq/QJAA1gtHx08ANeerVfq2v4vUrsJioyPVF1tp06paOT1NSEjxpoosOflV7iiWHiWbv4UtmXhp5ttHWprT5HBgHZdR17we6zyyw81C1bLLCnM3aWT0OB52fZJ2d3oYLsbc5JuEYOoV9+d9iTEzCzwzqGe8hDena26eVQq5/VUsd80No7wEa40vfzXJkcbXjrvHykIBZe2pHVk3VO9bgy6ZIaGGIc= + distributions: "sdist bdist_wheel" + on: + tags: true + python: "2.7" diff --git a/CHANGES.rst b/CHANGES.rst index 608e5d2..55aed06 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,13 @@ Changes ======= +Version 0.1.1 (released 2015-07-27): + +- Sorts and removes duplicated enum values. +- Swaps wrongly defined repeatable and non-repeatable subfields. (#23) +- Addresses issue when allowed indicators where defined as a range. + (#22) + Version 0.1.0 (released 2015-07-03): - Initial public release. diff --git a/RELEASE-NOTES.rst b/RELEASE-NOTES.rst index b9c4abd..ceb4534 100644 --- a/RELEASE-NOTES.rst +++ b/RELEASE-NOTES.rst @@ -1,28 +1,35 @@ =========================== - DoJSON v0.1.0 is released + DoJSON v0.1.1 is released =========================== -DoJSON v0.1.0 was released on July 3, 2015. +DoJSON v0.1.1 was released on July 27, 2015. About ----- DoJSON is a simple Pythonic JSON to JSON converter. -What's new ----------- +Improved features +----------------- -- Initial public release. +- Sorts and removes duplicated enum values. + +Bug fixes +--------- + +- Swaps wrongly defined repeatable and non-repeatable subfields. (#23) +- Addresses issue when allowed indicators where defined as a range. + (#22) Installation ------------ - $ pip install dojson + $ pip install dojson==0.1.1 Documentation ------------- - http://dojson.readthedocs.org/en/v0.1.0 + http://dojson.readthedocs.org/en/v0.1.1 Happy hacking and thanks for flying DoJSON. diff --git a/dojson/version.py b/dojson/version.py index 7c97bef..86ebf28 100644 --- a/dojson/version.py +++ b/dojson/version.py @@ -17,4 +17,4 @@ # Do not change the format of this next line. Doing so risks breaking # setup.py and docs/conf.py -__version__ = "0.1.1.dev20150703" +__version__ = "0.1.1"