diff --git a/CHANGELOG.md b/CHANGELOG.md index 448fc95..b7d1457 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ # Sindri Changelog +## Version 0.2.9 (2020-10-23) + +Maintenance release with the following changes: + +* Improve performance of website generation +* Update default config to point to new server +* Ignore errors when parsing the sensor log file + + + ## Version 0.2.8 (2020-05-15) Bugfix release with the following changes: diff --git a/src/sindri/_version.py b/src/sindri/_version.py index b5b25c7..4b55e8f 100644 --- a/src/sindri/_version.py +++ b/src/sindri/_version.py @@ -1,4 +1,4 @@ """Version file.""" -VERSION_INFO = (0, 2, 8) +VERSION_INFO = (0, 2, 9) __version__ = '.'.join((str(version) for version in VERSION_INFO))