From 7f511ea1af114ca48ee22b7494ecc82a415a6114 Mon Sep 17 00:00:00 2001 From: Kumi Date: Sun, 24 Mar 2024 16:48:30 +0100 Subject: [PATCH] feat(setup.py): bump version to 0.2.0 for Django Multiselectfield This update marks the transition from a pre-release, Django 4 specific version (0.1.12-django4-1-1) to a more stable release (0.2.0). The change signifies not just the increment in functionality but also better compatibility and bug fixes that are relevant to all Django versions, not just Django 4. This version bump responds to the community feedback for a more stable and broadly compatible version of the Django Multiselectfield package. By moving to a semantically significant versioning, we aim to provide clearer expectations about the maintenance and stability of the package to developers. This change encourages wider adoption and more reliable integration into Django projects. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index eaa90bf..bb025d6 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ def read(*rnames): setup( name="django-multiselectfield", - version="0.1.12-django4-1-1", + version="0.2.0", author="Pablo Martin", author_email="goinnn@gmail.com", description="Django multiple select field",