24.2.1 (#1320)

* 24.2.1

* actually update the thing we should
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index deea5da..8a25388 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -4,6 +4,21 @@
 Versions are year-based with a strict backward-compatibility policy.
 The third digit is only for regressions.
 
+24.2.1 (2024-07-20)
+-------------------
+
+Backward-incompatible changes:
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+Deprecations:
+^^^^^^^^^^^^^
+
+Changes:
+^^^^^^^^
+
+- Fixed changelog to remove sphinx specific restructured text strings.
+
+
 24.2.0 (2024-07-20)
 -------------------
 
diff --git a/setup.py b/setup.py
index db71563..5397af5 100644
--- a/setup.py
+++ b/setup.py
@@ -93,7 +93,7 @@
         packages=find_packages(where="src"),
         package_dir={"": "src"},
         install_requires=[
-            "cryptography>=41.0.5,<43",
+            "cryptography>=41.0.5,<44",
         ],
         extras_require={
             "test": ["pytest-rerunfailures", "pretend", "pytest>=3.0.1"],
diff --git a/src/OpenSSL/version.py b/src/OpenSSL/version.py
index 2bbf8be..0cfb065 100644
--- a/src/OpenSSL/version.py
+++ b/src/OpenSSL/version.py
@@ -17,7 +17,7 @@
     "__version__",
 ]
 
-__version__ = "24.2.0"
+__version__ = "24.2.1"
 
 __title__ = "pyOpenSSL"
 __uri__ = "https://pyopenssl.org/"