From f2d8632a3e5da016d11672d1c3ef7a1dbacd34d6 Mon Sep 17 00:00:00 2001 From: Hynek Cernoch Date: Mon, 4 Mar 2024 16:18:11 +0100 Subject: [PATCH] CHANGELOG v5.0.1 --- CHANGELOG.rst | 12 +++++++----- salesforce/__init__.py | 2 +- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 37fef78f..07ab8816 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -16,12 +16,14 @@ experimental. [5.0.1] not released yet ------------------------ -* Support for ``db_default`` field option in Django 5.0. It allows at last a seamless - support of DefaultedOnCreate in Salesforce. -* Support for Salesforce API 60.0 Spring '24 +* Add: Support for ``db_default`` field option in Django 5.0. It allows a seamless + support of the ``defaultedOnCreate`` counterpart in Salesforce. +* Add: Support for Salesforce API 60.0 Spring '24. * Change: Values of ``FloatField`` are now really float, not Decimal as previously. -* Add: FloatField is used by ``inspectdb`` for some metadata with negative decimal places, - new for API 60.0. +* Fix: Compatibility with the current django-debug-toolbar #322 +* Fix: Introspection ``inspectdb`` of custom editable name fields #308 +* Add: FloatField is used by ``inspectdb`` for some metadata with negative decimal places + that are new in API 60.0. * Change: A license code is required also in the first half of lifetime of a LTS version unless the AGPL licence is accepted. Django 4.2 LTS will be unlocked together with unlocking 5.0 in August 2024 diff --git a/salesforce/__init__.py b/salesforce/__init__.py index 1ffd883a..4ab7ee49 100644 --- a/salesforce/__init__.py +++ b/salesforce/__init__.py @@ -19,6 +19,6 @@ IntegrityError as IntegrityError, DatabaseError as DatabaseError, SalesforceError as SalesforceError, ) -__version__ = "5.0" +__version__ = "5.0.1" log = logging.getLogger(__name__)