From 3aba29a45cb0aca9b4629d782b8cb522c2769085 Mon Sep 17 00:00:00 2001 From: Brian McFee Date: Sat, 13 May 2017 13:16:36 -0400 Subject: [PATCH] documentation and version updates --- docs/changes.rst | 47 ++++++++++++++++++++++++++++++++++------------- jams/version.py | 2 +- 2 files changed, 35 insertions(+), 14 deletions(-) diff --git a/docs/changes.rst b/docs/changes.rst index abd9c19a..e7a8fe0b 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -1,34 +1,55 @@ Changes ======= +v0.2.3 +------ + +- Deprecated the `JamsFrame` class + (`PR #153 `_): + + - Moved `JamsFrame.to_interval_values()` to `Annotation.to_interval_values()` + + - Any code that uses `pandas.DataFrame` methods on `Annotation.data` will cease to work + starting in 0.3.0. + +- Forward compatibility with 0.3.0 + (`PR #153 `_): + + - Added the `jams.Observation` type + + - Added iteration support to `Annotation` objects + +- added type safety check in regexp search (`PR #146 `_). +- added support for `pandas=0.20` (`PR #150 `_). + v0.2.2 ------ - added ``__contains__`` method to ``JObject`` - (`PR #139 `_). - Implemented ``JAMS.trim()`` method - (`PR #136 `_). - Updates to the SALAMI tag namespaces - (`PR #134 `_). - added `infer_duration` flag to ``import_lab`` - (`PR #125 `_). - namespace conversion validates input - (`PR #123 `_). - Refactored the ``pitch`` namespaces - (`PR #121 `_). - Fancy indexing for annotation arrays - (`PR #120 `_). - ``jams.schema.values`` function to access enumerated types - (`PR #119 `_). - ``jams.display`` submodule - (`PR #115 `_). - support for `mir_eval >= 0.3` - (`PR #106 `_). - Automatic conversion between namespaces - (`PR #105 `_). - Fixed a type error in ``jams_to_lab`` - (`PR #94 `_). - ``jams.sonify`` module for sonification - (`PR #91 `_). v0.2.1 ------ diff --git a/jams/version.py b/jams/version.py index 8c0da96f..dc2ba652 100644 --- a/jams/version.py +++ b/jams/version.py @@ -3,4 +3,4 @@ """Version info""" short_version = '0.2' -version = '0.2.2' +version = '0.2.3'