diff --git a/docs/changes.rst b/docs/changes.rst new file mode 100644 index 00000000..75df9e09 --- /dev/null +++ b/docs/changes.rst @@ -0,0 +1,33 @@ +Changes +======= + +v0.2.1 +------ +New features + - ``eval`` support for hierarchical segmentation via the ``multi_segment`` namespace + (`PR #79 `_). + - Local namespace management + (`PR #75 `_). + - Python 3.5 support + (`PR #73 `_). + - ``jams.search()`` now allows matching objects by equality + (`PR #71 `_). + - ``multi_segment`` namespace for multi-level structural segmentations. + (`PR #69 `_). + - ``vector`` namespace for numerical vector data + (`PR #64 `_). + - ``blob`` namespace for unstructured, time-keyed observation data + (`PR #63 `_). + - ``tag_msd_tagtraum_cd1`` and ``tag_msd_tagtraum_cd2`` namespaces for genre tags + (`PR #63 `_). + +Schema changes + - ``Annotation`` objects now have ``time`` and ``duration`` fields which encode the + interval over which the annotation is valid. + (`PR #67 `_). + +Bug fixes + - Appending data to ``Annotation`` or ``JamsFrame`` objects now fails if ``time`` or ``duration`` are + ill-specified. + (`PR #87 `_). + diff --git a/docs/index.rst b/docs/index.rst index 8fdcda70..800ec008 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -32,10 +32,18 @@ API reference jams namespace -Indices and tables -================== +Contribute +---------- +- `Issue Tracker `_ +- `Source Code `_ + + +Changelog +========= +.. toctree:: + :maxdepth: 1 + + changes * :ref:`genindex` -* :ref:`modindex` -* :ref:`search` diff --git a/jams/version.py b/jams/version.py index bc032fbf..9dc76a46 100644 --- a/jams/version.py +++ b/jams/version.py @@ -3,4 +3,4 @@ """Version info""" short_version = '0.2' -version = '0.2.0' +version = '0.2.1'