Skip to content

Commit

Permalink
Merge pull request #98 from maykinmedia/releases/0.35.1-retry
Browse files Browse the repository at this point in the history
Release 0.35.1
  • Loading branch information
swrichards authored Aug 15, 2024
2 parents 8e7f0b0 + aeaca53 commit ce82492
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 5 deletions.
23 changes: 21 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,16 +1,35 @@
Changes
=======

0.35.0 (2024-07-31)
0.35.1 (2024-08-15)
-------------------

Bugfix release.

* 🐛 The data migration introduced in 0.35.0 would initialize the ``slug``
field in such a way that the generated slug would typically exceed the
field's ``max_length``. This release fixes the field and the underlying
migration.

0.35.0💥 (2024-08-13)
-------------------

**💥 0.35.0 has been yanked and should not be used to avoid ending up in
an inconsistent migration state. Use 0.35.1 instead.**

Small feature release.

* ✨ Added a slug field to the ``Service`` model for improved indexing across
instances. As this field is required, the included migration will initiaize
this field with a slugified version of the ``api_root`` field.
* ✨ Added natural key getters to the ``Service`` model to support Django's
natural key-based (de)serialization methods.
natural key-based (de)serialization methods.

**💥 Breaking changes**

* Because ``slug`` is now a required field, you may have to update your
custom ``Service`` creation or testing logic to ensure the field is
properly set.

0.34.0 (2024-07-31)
-------------------
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Welcome to ZGW Consumers' documentation!
========================================

:Version: 0.35.0
:Version: 0.35.1
:Source: https://github.com/maykinmedia/zgw-consumers
:Keywords: OpenAPI, Zaakgericht Werken, Common Ground, NLX

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "zgw-consumers"
version = "0.35.0"
version = "0.35.1"
description = "Configuration for service (OpenAPI 3 or other) consumers"
authors = [
{name = "Maykin Media", email = "[email protected]"}
Expand Down Expand Up @@ -101,7 +101,7 @@ testpaths = ["tests"]
DJANGO_SETTINGS_MODULE = "testapp.settings"

[tool.bumpversion]
current_version = "0.35.0"
current_version = "0.35.1"
files = [
{filename = "pyproject.toml"},
{filename = "README.rst"},
Expand Down

0 comments on commit ce82492

Please sign in to comment.