From 7e098f5d01629d330ec3a53b72ab39cbd7e8a12b Mon Sep 17 00:00:00 2001 From: martinRenou Date: Wed, 22 Mar 2023 08:20:09 +0000 Subject: [PATCH] Publish 0.1.3 SHA256 hashes: comm-0.1.3-py3-none-any.whl: 16613c6211e20223f215fc6d3b266a247b6e2641bf4e0a3ad34cb1aff2aa3f37 comm-0.1.3.tar.gz: a61efa9daffcfbe66fd643ba966f846a624e4e6d6767eda9cf6e993aadaab93e --- CHANGELOG.md | 22 ++++++++++++++++++++-- comm/__init__.py | 2 +- 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6981c95..7f00fed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,26 @@ All notable changes to this project will be documented in this file. -## 0.1.2 +## 0.1.3 -Initial release +([Full Changelog](https://github.com/ipython/comm/compare/0.1.2...309b8295ca950a9ca9bdc0daa796215d72a7cb09)) + +### Maintenance and upkeep improvements + +- Adopt linters and releaser [#12](https://github.com/ipython/comm/pull/12) ([@blink1073](https://github.com/blink1073)) + +### Other merged PRs + +- feat: provide a default implementation [#13](https://github.com/ipython/comm/pull/13) ([@maartenbreddels](https://github.com/maartenbreddels)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/ipython/comm/graphs/contributors?from=2022-12-08&to=2023-03-22&type=c)) + +[@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 671f287..eb8f904 100644 --- a/comm/__init__.py +++ b/comm/__init__.py @@ -10,7 +10,7 @@ from .base_comm import BaseComm, CommManager -__version__ = "0.1.2" +__version__ = "0.1.3" __all__ = [ "create_comm", "get_comm_manager",