summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2022-06-24 12:15:11 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2022-06-24 12:15:11 -0400
commitf35a025bd1a9b649e5dedc86c8b5f3b12ffb8c9b (patch)
treecc5ac71d233450871d0b137688d64de1649fdd45
parent9966bc72d41c968d7587a9e46b36c214a3ad6cf1 (diff)
downloadsqlalchemy-f35a025bd1a9b649e5dedc86c8b5f3b12ffb8c9b.tar.gz
- 1.4.39rel_1_4_39
-rw-r--r--doc/build/changelog/changelog_14.rst12
-rw-r--r--doc/build/changelog/unreleased_14/mutable_fix.rst9
-rw-r--r--doc/build/conf.py4
3 files changed, 13 insertions, 12 deletions
diff --git a/doc/build/changelog/changelog_14.rst b/doc/build/changelog/changelog_14.rst
index 805326ccc..2e5ddea7c 100644
--- a/doc/build/changelog/changelog_14.rst
+++ b/doc/build/changelog/changelog_14.rst
@@ -15,7 +15,17 @@ This document details individual issue-level changes made throughout
.. changelog::
:version: 1.4.39
- :include_notes_from: unreleased_14
+ :released: June 24, 2022
+
+ .. change::
+ :tags: bug, orm, regression
+ :tickets: 8133
+
+ Fixed regression caused by :ticket:`8133` where the pickle format for
+ mutable attributes was changed, without a fallback to recognize the old
+ format, causing in-place upgrades of SQLAlchemy to no longer be able to
+ read pickled data from previous versions. A check plus a fallback for the
+ old format is now in place.
.. changelog::
:version: 1.4.38
diff --git a/doc/build/changelog/unreleased_14/mutable_fix.rst b/doc/build/changelog/unreleased_14/mutable_fix.rst
deleted file mode 100644
index 2c96878b8..000000000
--- a/doc/build/changelog/unreleased_14/mutable_fix.rst
+++ /dev/null
@@ -1,9 +0,0 @@
-.. change::
- :tags: bug, orm, regression
- :tickets: 8133
-
- Fixed regression caused by :ticket:`8133` where the pickle format for
- mutable attributes was changed, without a fallback to recognize the old
- format, causing in-place upgrades of SQLAlchemy to no longer be able to
- read pickled data from previous versions. A check plus a fallback for the
- old format is now in place.
diff --git a/doc/build/conf.py b/doc/build/conf.py
index e2bf92658..10dc263ac 100644
--- a/doc/build/conf.py
+++ b/doc/build/conf.py
@@ -213,9 +213,9 @@ copyright = u"2007-2022, the SQLAlchemy authors and contributors" # noqa
# The short X.Y version.
version = "1.4"
# The full version, including alpha/beta/rc tags.
-release = "1.4.38"
+release = "1.4.39"
-release_date = "June 23, 2022"
+release_date = "June 24, 2022"
site_base = os.environ.get("RTD_SITE_BASE", "https://www.sqlalchemy.org")
site_adapter_template = "docs_adapter.mako"