Skip to content

Commit

Permalink
release: v0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jirikuncar committed May 4, 2018
1 parent 82e6d0e commit c57ca30
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 20 deletions.
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changes
=======

Version 0.7.1 (released 2018-05-04)

- Resolves issue with keys containing dots. (#101)

Version 0.7.0 (released 2017-10-16)

- Fixes problem with diff results that reference the original structure by
Expand Down
23 changes: 5 additions & 18 deletions RELEASE-NOTES.rst
Original file line number Diff line number Diff line change
@@ -1,42 +1,29 @@
===================
Dictdiffer v0.7.0
Dictdiffer v0.7.1
===================

Dictdiffer v0.7.0 was released on October 16, 2017.
Dictdiffer v0.7.1 was released on May 4, 2018.

About
-----

Dictdiffer is a helper module that helps you to diff and patch
dictionaries.

Incompatible changes
--------------------

- Fixes problem with diff results that reference the original structure by
introduction of `deepcopy` for all possibly unhashable items. Thus the diff
does not change later when the diffed structures change.

Improved features
-----------------

- Adds new option for patching and reverting patches in-place.
- Adds Python 3.6 to test matrix.

Bug fixes
---------

- Fixes the `ignore` argument when it contains a unicode value.
- Resolves issue with keys containing dots. (#101)

Installation
------------

$ pip install dictdiffer==0.7.0
$ pip install dictdiffer==0.7.1

Documentation
-------------

http://dictdiffer.readthedocs.io/en/v0.7.0
http://dictdiffer.readthedocs.io/en/v0.7.1

Happy hacking and thanks for flying Dictdiffer.

Expand Down
4 changes: 2 additions & 2 deletions dictdiffer/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# This file is part of Dictdiffer.
#
# Copyright (C) 2014, 2015, 2016 CERN.
# Copyright (C) 2017 ETH Zurich, Swiss Data Science Center, Jiri Kuncar.
# Copyright (C) 2017, 2018 ETH Zurich, Swiss Data Science Center, Jiri Kuncar.
#
# Dictdiffer is free software; you can redistribute it and/or modify
# it under the terms of the MIT License; see LICENSE file for more
Expand All @@ -18,4 +18,4 @@
# Do not change the format of this next line. Doing so risks breaking
# setup.py and docs/conf.py

__version__ = "0.7.1.dev20171016"
__version__ = "0.7.1"

0 comments on commit c57ca30

Please sign in to comment.