diff --git a/CHANGELOG.md b/CHANGELOG.md index 44b7b01..6e46a4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # CHANGELOG +## v0.6.1 (2024-11-10) + +### Bug Fixes + +* Add missing required method for 2d plotting ([`f5d2d4e`](https://github.com/swvanbuuren/mlpyqtgraph/commit/f5d2d4e4b49a1598cfff77e2c1b9f5a180d9884f)) + +### Documentation + +* Add info and resolution for missing xcb plugin error ([`0ddb6a1`](https://github.com/swvanbuuren/mlpyqtgraph/commit/0ddb6a1224988e669c3a075de713adb32f22f6c9)) + +### Testing + +* Setup basic testing ([`fe61dad`](https://github.com/swvanbuuren/mlpyqtgraph/commit/fe61dadd0059a5dafc652f28a0f0574c404ebdfe)) ## v0.6.0 (2024-11-09) ### Features diff --git a/mlpyqtgraph/__init__.py b/mlpyqtgraph/__init__.py index 7ced0d2..25d18e1 100644 --- a/mlpyqtgraph/__init__.py +++ b/mlpyqtgraph/__init__.py @@ -14,7 +14,7 @@ from .ml_functions import * -__version__ = '0.6.0' +__version__ = '0.6.1' pqthreads_config.params.signal_slot_timeout = 10_000 diff --git a/pyproject.toml b/pyproject.toml index d1d29c3..b828dd5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "mlpyqtgraph" -version = "0.6.0" +version = "0.6.1" description = "Matplotlib like plotting with pyqtgraph in python" readme = "README.md" license = { file = "LICENSE" }