From 1365149e6ad1a8520bb6be2a34a27234826ce75d Mon Sep 17 00:00:00 2001 From: Ryan Ly Date: Thu, 22 Apr 2021 14:53:55 -0700 Subject: [PATCH] Minor fixes before HDMF 2.5.0 (#589) --- CHANGELOG.md | 6 +++--- docs/gallery/External_Resources.py | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7dc542db3..fd3f2d3dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # HDMF Changelog -## HDMF 2.5.0 (April 5, 2021) +## HDMF 2.5.0 (April 22, 2021) ### New features - `DynamicTable` can be automatically generated using `get_class`. Now the HDMF API can read files with extensions @@ -15,8 +15,8 @@ - `ExternalResources` was changed to support storing both names and URIs for resources. @mavaylon (#517, #548) - The `VocabData` data type was replaced by `EnumData` to provide more flexible support for data from a set of fixed values. - - Added `AlignedDynamicTable`, which defines a `DynamicTable` that supports storing a collection of sub-tables. - Each sub-table is itself a `DynamicTable` that is aligned with the main table by row index. Each sub-table + - Added `AlignedDynamicTable`, which defines a `DynamicTable` that supports storing a collection of sub-tables. + Each sub-table is itself a `DynamicTable` that is aligned with the main table by row index. Each sub-table defines a sub-category in the main table effectively creating a table with sub-headings to organize columns. - See https://hdmf-common-schema.readthedocs.io/en/latest/format_release_notes.html#april-19-2021 for more details. diff --git a/docs/gallery/External_Resources.py b/docs/gallery/External_Resources.py index 5a6449031..d8bc8e41a 100644 --- a/docs/gallery/External_Resources.py +++ b/docs/gallery/External_Resources.py @@ -31,6 +31,7 @@ # allows us to link the two. To reduce data redundancy and improve data integrity, # ``ExternalResources`` stores this data internally in a collection of # interlinked tables. +# # * :py:class:`~hdmf.common.resources.KeyTable` where each row describes a # :py:class:`~hdmf.common.resources.Key` # * :py:class:`~hdmf.common.resources.ResourceTable` where each row describes a @@ -40,7 +41,7 @@ # * :py:class:`~hdmf.common.resources.ObjectTable` where each row descibes an # :py:class:`~hdmf.common.resources.Object` # * :py:class:`~hdmf.common.resources.ObjectKeyTable` where each row describes an -# :py:class:`~hdmf.common.resources.ObjectKey` pair identifying which keys +# :py:class:`~hdmf.common.resources.ObjectKey` pair identifying which keys # are used by which objects. # # The :py:class:`~hdmf.common.resources.ExternalResources` class then provides