diff --git a/HISTORY.rst b/HISTORY.rst index 34641ff..4616975 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,16 @@ History ======= +1.2.1 (2024-07-01) +------------------ + +* Add full compatibility with standard Python dataclasses. +* Add scripts to convert text to binary format and back (orsopy.ort2orb and orsopy.orb2ort). +* Multiple updates to documentation. +* Fix column header line for multi-dataset files written wrongly #128. +* Fix some issues with validation and schema generation. +* Fix bug in NeXus file writer for certain header configurations. + 1.2.0 (2024-02-23) ------------------ diff --git a/orsopy/__init__.py b/orsopy/__init__.py index b63dc53..040f4df 100644 --- a/orsopy/__init__.py +++ b/orsopy/__init__.py @@ -1,3 +1,3 @@ """Top-level package for orsopy.""" -__version__ = "1.2.0" +__version__ = "1.2.1"