Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: v0.7.1 #103

Merged
merged 1 commit into from
May 4, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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"