Skip to content

Commit

Permalink
CHANGELOG v5.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hynekcer authored and philchristensen committed Mar 4, 2024
1 parent 9734027 commit f2d8632
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
12 changes: 7 additions & 5 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion salesforce/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
IntegrityError as IntegrityError, DatabaseError as DatabaseError, SalesforceError as SalesforceError,
)

__version__ = "5.0"
__version__ = "5.0.1"

log = logging.getLogger(__name__)

0 comments on commit f2d8632

Please sign in to comment.