diff --git a/CHANGELOG.md b/CHANGELOG.md index cdb4bcf..79882da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,24 @@ All notable changes to this project will be documented in this file. +## [0.2.0] - 2024-06-21 + +### Bug Fixes + +- Update notebook SBR; add `to_csv` for all dataframes +- Reduce vibration velocity with reliability index +- Update logic for building plot + +### Documentation + +- Use more descriptive attribute names + +### Features + +- *(sbr-b)* Allow multi building validation +- Add SBR-B to notebook +- Initial setup SBR-B + ## [0.1.7] - 2024-03-19 ### Features diff --git a/pyproject.toml b/pyproject.toml index 3988d70..46e6d65 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "py-vibracore" -version = "0.1.7" +version = "0.2.0" description = "Public python SDK for the CEMS VibraCore web-API." requires-python = ">=3.9" dependencies = [ diff --git a/src/pyvibracore/_version.py b/src/pyvibracore/_version.py index f1380ee..d3ec452 100644 --- a/src/pyvibracore/_version.py +++ b/src/pyvibracore/_version.py @@ -1 +1 @@ -__version__ = "0.1.7" +__version__ = "0.2.0"