diff --git a/CHANGELOG.md b/CHANGELOG.md index cebaa4e..7641d56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## Version 0.12.0 + +* More documentation improvements (@Plebbimon). +* Add "before_create_obj" hook, that allows to hook into the creation of an object before it is saved to the database ( + @hansegucker). +* Update `dismabiguate_id` to handle UUIDs (@M69k65y). + ## Version 0.11.1 * Make required_fields and optional_fields handle None values more gracefully. diff --git a/docs/conf.py b/docs/conf.py index 7ec3bb0..de41225 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.1" +release = "0.12.0" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index bc261d6..d35c776 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "graphene-django-cud" -version = "0.11.0" +version = "0.12.0" description = "" authors = ["Tormod Haugland "] license = "MIT" diff --git a/setup.py b/setup.py index e2683b0..683ccdd 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="graphene-django-cud", - version="0.11.1", + version="0.12.0", author="Tormod Haugland", author_email="tormod.haugland@gmail.com", description="Create, update and delete mutations for graphene-django",