From 946fcf1bd9aa15073150aabc11372806a8aa42f7 Mon Sep 17 00:00:00 2001 From: Jiri Kuncar Date: Wed, 18 Nov 2015 13:30:11 +0100 Subject: [PATCH] DoJSON v0.4.0 Signed-off-by: Jiri Kuncar --- CHANGES.rst | 17 +++++++++++++++++ RELEASE-NOTES.rst | 27 ++++++++++++++------------- dojson/version.py | 2 +- 3 files changed, 32 insertions(+), 14 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 830b5b5..84f370b 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,23 @@ Changes ======= +Version 0.4.0 (released 2015-11-18): +------------------------------------ + +New features +~~~~~~~~~~~~ + +- Improves dojson.contrib.marc2.utils.load() to read the input by + iterating of the open stream, rather than loading it all in memory + in one go. (#45) (#46) +- Renames OverUndo to Underdo following same name convention as for + Overdo. + +Bug fixes +~~~~~~~~~ + +- Fixes indicator extraction from value in `Underdo` model. + Version 0.3.0 (released 2015-11-09): ------------------------------------ diff --git a/RELEASE-NOTES.rst b/RELEASE-NOTES.rst index af80a7f..4749cf7 100644 --- a/RELEASE-NOTES.rst +++ b/RELEASE-NOTES.rst @@ -1,36 +1,37 @@ =============== - DoJSON v0.3.0 + DoJSON v0.4.0 =============== -DoJSON v0.3.0 was released on November 9, 2015. +DoJSON v0.4.0 was released on November 18, 2015. About ----- DoJSON is a simple Pythonic JSON to JSON converter. -New features ------------- - -- Adds **experimental** rules for converting human readable JSON into - a JSON representation of the MARC21 Format. -- Adds `do` and `missing` commands for `dojson` command line interface - (see `dojson --help` for more information). - Improved features ----------------- -- Adds missing mapping for the first indicator of field 856. +- Improves dojson.contrib.marc2.utils.load() to read the input by + iterating of the open stream, rather than loading it all in memory + in one go. (#45) (#46) +- Renames OverUndo to Underdo following same name convention as for + Overdo. + +Bug fixes +--------- + +- Fixes indicator extraction from value in `Underdo` model. Installation ------------ - $ pip install dojson==0.3.0 + $ pip install dojson==0.4.0 Documentation ------------- - http://dojson.readthedocs.org/en/v0.3.0 + http://dojson.readthedocs.org/en/v0.4.0 Happy hacking and thanks for flying DoJSON. diff --git a/dojson/version.py b/dojson/version.py index e30c578..2c596df 100644 --- a/dojson/version.py +++ b/dojson/version.py @@ -16,4 +16,4 @@ # Do not change the format of this next line. Doing so risks breaking # setup.py and docs/conf.py -__version__ = "0.3.1.dev20151109" +__version__ = "0.4.0"