diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f00fed..978b995 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file. +## 0.1.4 + +([Full Changelog](https://github.com/ipython/comm/compare/v0.1.3...136c099e4fb1cc83040661796ad7ea349af04be8)) + +### Improvements + +- Loosen dependency on traitlet so it is available in python 3.6 [#16](https://github.com/ipython/comm/pull/16) ([@vincent-grosbois](https://github.com/vincent-grosbois)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/ipython/comm/graphs/contributors?from=2023-03-22&to=2023-08-02&type=c)) + +[@martinRenou](https://github.com/search?q=repo%3Aipython%2Fcomm+involves%3AmartinRenou+updated%3A2023-03-22..2023-08-02&type=Issues) | [@vincent-grosbois](https://github.com/search?q=repo%3Aipython%2Fcomm+involves%3Avincent-grosbois+updated%3A2023-03-22..2023-08-02&type=Issues) + + + ## 0.1.3 ([Full Changelog](https://github.com/ipython/comm/compare/0.1.2...309b8295ca950a9ca9bdc0daa796215d72a7cb09)) @@ -22,8 +38,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%3A2022-12-08..2023-03-22&type=Issues) | [@maartenbreddels](https://github.com/search?q=repo%3Aipython%2Fcomm+involves%3Amaartenbreddels+updated%3A2022-12-08..2023-03-22&type=Issues) - - ## 0.1.2 Initial release diff --git a/comm/__init__.py b/comm/__init__.py index eb8f904..341a42e 100644 --- a/comm/__init__.py +++ b/comm/__init__.py @@ -10,7 +10,7 @@ from .base_comm import BaseComm, CommManager -__version__ = "0.1.3" +__version__ = "0.1.4" __all__ = [ "create_comm", "get_comm_manager",