From 5a8b3594345420b3ba2727237548031721ab6d88 Mon Sep 17 00:00:00 2001 From: Tormod Haugland Date: Thu, 26 Oct 2023 07:02:05 +0200 Subject: [PATCH] Bumpversion 0.11.0 -> 0.11.1 Signed-off-by: Tormod Haugland --- CHANGELOG.md | 5 +++++ docs/conf.py | 2 +- setup.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 607f901..cebaa4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## Version 0.11.1 + +* Make required_fields and optional_fields handle None values more gracefully. +* Remove mutable default arguments for auto_context_fields + ## Version 0.11.0 * Fix graphene-django 3.x compatibility issues (thanks @sjdemartini, @wito-alex). diff --git a/docs/conf.py b/docs/conf.py index b879fd3..7ec3bb0 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -29,7 +29,7 @@ author = "Tormod Haugland" # The full version, including alpha/beta/rc tags -release = "0.11.0" +release = "0.11.1" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index c05d839..e2683b0 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="graphene-django-cud", - version="0.11.0", + version="0.11.1", author="Tormod Haugland", author_email="tormod.haugland@gmail.com", description="Create, update and delete mutations for graphene-django",