From c17954a04d4c86a99c158c0040062552f748db0f Mon Sep 17 00:00:00 2001 From: Fabien Le Frapper Date: Tue, 24 Aug 2021 10:26:13 +0200 Subject: [PATCH] Bump versions to 0.4.1 --- HISTORY.rst | 20 ++++++++++++++++++++ graphql_ws/__init__.py | 2 +- setup.cfg | 4 ++-- 3 files changed, 23 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 1179ce2..259d496 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,26 @@ History ======= +======= +0.4.1 (2021-08-24) +================== +- Bump version + +0.4.0 (2021-08-24) +================== +- Removed support for Django 2 +- Added GitHub actions +- Added Channels v3 compatibility +- Added new module to support Channels > 1 #18 +- Fix: tests are running again +- Fix: Correctly unsubscribe after on_start operation is complete +- Breaking changes + +0.3.1 (2020-05-19) +================== +- update travis deployment credentials and remove travis autogen config + + 0.3.0 (2018-09-25) ================== diff --git a/graphql_ws/__init__.py b/graphql_ws/__init__.py index 0ffa258..4364f18 100644 --- a/graphql_ws/__init__.py +++ b/graphql_ws/__init__.py @@ -4,4 +4,4 @@ __author__ = """Syrus Akbary""" __email__ = "me@syrusakbary.com" -__version__ = "0.3.1" +__version__ = "0.4.1" diff --git a/setup.cfg b/setup.cfg index 3d24cca..b207420 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ [metadata] name = graphql-ws -version = 0.3.1 +version = 0.4.1 description = Websocket backend for GraphQL subscriptions long_description = file: README.rst, CHANGES.rst author = Syrus Akbary @@ -63,7 +63,7 @@ test = universal = 1 [bumpversion] -current_version = 0.3.1 +current_version = 0.4.1 commit = True tag = True