Skip to content

Commit c468f3c

Browse files
authored
Merge pull request #12 from hdmf-dev/prep_1.1.0
Bump version number to 1.1.0
2 parents 51ead2e + 242e76d commit c468f3c

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
# hdmf-common
2-
Specifications for pre-defined data structures of HDMF
2+
Specifications for pre-defined data structures of [HDMF](https://github.com/hdmf-dev/hdmf)
33

4-
The HDMF common provides the following data structures:
4+
The HDMF-common schema provides the following data structures:
55
- DynamicTable : a column-based table structure that stores one-to-one and one-to-many relationships
66
- VectorData : a data structure for representing a column
77
- VectorIndex : a data structure for indexing a VectorData. This is used to store one-to-many relationships
88
- ElementIdentifiers : a 1D array for storing primary identifiers for elements of a table
9+
- DynamicTableRegion : a link from one table to an index or region of another
910
- CSRMatrix : a compressed sparse row matrix
11+
12+
The schema also provides the following base data structures:
13+
- Data : an abstract data type for a dataset
14+
- Index : an abstract pointer that indexes data values
15+
- Container : an abstract data type for a generic container storing collections of data and metadata

common/namespace.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ namespaces:
1818
title: Table data types
1919
- doc: data types for different types of sparse matrices
2020
source: sparse.yaml
21-
version: 1.0.0
21+
version: 1.1.0

docs/format_overview.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,17 @@ These objects are generally stored inside a `DynamicTable <sec-DynamicTable>`_,
5555
onto the rows of the table. The `VectorData <sec-VectorData>`_ object may be n-dimensional, but only the first dimension is ragged.
5656

5757

58+
hdmf-common Release Notes
59+
=========================
5860

61+
1.1.0 (January 3, 2020)
62+
-----------------------
63+
64+
- The 'colnames' attribute of ``DynamicTable`` changed from data type 'ascii' to 'text'.
65+
- Improved documentation and type docstrings.
66+
67+
68+
1.0.0 (September 26, 2019)
69+
--------------------------
70+
71+
Initial release.

0 commit comments

Comments
 (0)