From 234c93d4d4c61d67301273e31cba23a504dc0aac Mon Sep 17 00:00:00 2001 From: martinRenou Date: Wed, 2 Aug 2023 13:38:19 +0000 Subject: [PATCH] Publish 0.1.4 SHA256 hashes: comm-0.1.4-py3-none-any.whl: 6d52794cba11b36ed9860999cd10fd02d6b2eac177068fdd585e1e2f8a96e67a comm-0.1.4.tar.gz: 354e40a59c9dd6db50c5cc6b4acc887d82e9603787f83b68c01a80a923984d15 --- CHANGELOG.md | 18 ++++++++++++++++-- comm/__init__.py | 2 +- 2 files changed, 17 insertions(+), 3 deletions(-) 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",