diff --git a/docs/changelog.rst b/docs/changelog.rst new file mode 100644 index 0000000..fc5f62f --- /dev/null +++ b/docs/changelog.rst @@ -0,0 +1,22 @@ +Changelog +========= + +0.2.0 +----- +2020-02-06 + +New features + - database creation with `mode="rwc"`, e.g. `vallenae.io.PriDatabase.__init__` + +Bug fixes + - number field in `vallenae.io.MarkerRecord` optional + - scaling of parametric inputs optional + - keep column order of query if new columns are added to the database + - return array with float32 from `vallenae.io.TraDatabase.read_continuous_wave` (instead of float64) + + +0.1.0 +----- +2020-01-24 + +Initial public release \ No newline at end of file diff --git a/docs/index.rst b/docs/index.rst index 813842c..f228ba3 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -35,6 +35,7 @@ The remaining modules are system-independent and try to comprise the most common :caption: Development :hidden: + changelog todo Indices and tables diff --git a/setup.py b/setup.py index 9e1565d..f0a36c3 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ setup( name="vallenae", - version="0.1.0", + version="0.2.0", description="Extract and analyze Acoustic Emission measurement data", long_description=LONG_DESCRIPTION, long_description_content_type="text/markdown",