diff --git a/CHANGELOG.md b/CHANGELOG.md index aecb9fe..929977c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,29 @@ All notable changes to this project will be documented in this file. +## 0.2.1 + +([Full Changelog](https://github.com/ipython/comm/compare/v0.2.0...46e07dc298d19c1b7ade765d0a435f794e69a020)) + +### Maintenance and upkeep improvements + +- Update ruff config [#23](https://github.com/ipython/comm/pull/23) ([@blink1073](https://github.com/blink1073)) + +### Other merged PRs + +- chore: update pre-commit hooks [#25](https://github.com/ipython/comm/pull/25) ([@pre-commit-ci](https://github.com/pre-commit-ci)) +- Prevent exception spam during interpreter teardown [#24](https://github.com/ipython/comm/pull/24) ([@apmorton](https://github.com/apmorton)) +- chore: update pre-commit hooks [#22](https://github.com/ipython/comm/pull/22) ([@pre-commit-ci](https://github.com/pre-commit-ci)) +- chore: update pre-commit hooks [#21](https://github.com/ipython/comm/pull/21) ([@pre-commit-ci](https://github.com/pre-commit-ci)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/ipython/comm/graphs/contributors?from=2023-11-06&to=2024-01-02&type=c)) + +[@apmorton](https://github.com/search?q=repo%3Aipython%2Fcomm+involves%3Aapmorton+updated%3A2023-11-06..2024-01-02&type=Issues) | [@blink1073](https://github.com/search?q=repo%3Aipython%2Fcomm+involves%3Ablink1073+updated%3A2023-11-06..2024-01-02&type=Issues) | [@pre-commit-ci](https://github.com/search?q=repo%3Aipython%2Fcomm+involves%3Apre-commit-ci+updated%3A2023-11-06..2024-01-02&type=Issues) + + + ## 0.2.0 ([Full Changelog](https://github.com/ipython/comm/compare/v0.1.4...5e4ad3166b80feba3f74ad074b7b5f98d7a99439)) @@ -23,8 +46,6 @@ All notable changes to this project will be documented in this file. [@blink1073](https://github.com/search?q=repo%3Aipython%2Fcomm+involves%3Ablink1073+updated%3A2023-08-02..2023-11-06&type=Issues) | [@dependabot](https://github.com/search?q=repo%3Aipython%2Fcomm+involves%3Adependabot+updated%3A2023-08-02..2023-11-06&type=Issues) - - ## 0.1.4 ([Full Changelog](https://github.com/ipython/comm/compare/v0.1.3...136c099e4fb1cc83040661796ad7ea349af04be8)) diff --git a/comm/__init__.py b/comm/__init__.py index bb1b00e..eef0958 100644 --- a/comm/__init__.py +++ b/comm/__init__.py @@ -13,7 +13,7 @@ from .base_comm import BaseComm, BuffersType, CommManager, MaybeDict -__version__ = "0.2.0" +__version__ = "0.2.1" __all__ = [ "create_comm", "get_comm_manager",