diff --git a/CHANGES.rst b/CHANGES.rst index 8e5095b7..23b148ed 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -50,20 +50,22 @@ Enhancements and Fixes - MIVOT module: the model references in the dictionaries that are used to build ``MivotInstance`` objects are made more consistent [#551] - -- RegTAP constraints involving tables other than rr.resource are now - done via subqueries for less duplication of interfaces. [#562, #572] - MIVOT module: If the MIVOT annotation block contains a valid instance of the ``mango:EpochPosition`` class, the dynamic object describing the mapped data can generate a valid SkyCoord instance. [#591] +- Extending the MIVOT module with the ability to build annotations component by component + and put them into a VOTable. [#627] + +- RegTAP constraints involving tables other than rr.resource are now + done via subqueries for less duplication of interfaces. [#562, #572] + + - New sub-package discover for global dataset discovery. [#470] - Updated getdatalink to be consistent with iter_datalinks. [#613] -- Extending the MIVOT module with the ability to build annotations component by component - and put them into a VOTable. [#627] Deprecations and Removals diff --git a/pyvo/mivot/__init__.py b/pyvo/mivot/__init__.py index e69de29b..9dce85d0 100644 --- a/pyvo/mivot/__init__.py +++ b/pyvo/mivot/__init__.py @@ -0,0 +1 @@ +# Licensed under a 3-clause BSD style license - see LICENSE.rst diff --git a/pyvo/mivot/writer/__init__.py b/pyvo/mivot/writer/__init__.py index d76b9cf3..f0f23bf2 100644 --- a/pyvo/mivot/writer/__init__.py +++ b/pyvo/mivot/writer/__init__.py @@ -1,2 +1,3 @@ +# Licensed under a 3-clause BSD style license - see LICENSE.rst from .annotations import MivotAnnotations from .instance import MivotInstance \ No newline at end of file