[bumpversion]
-current_version = 51.3.2
+current_version = 51.3.3
commit = True
tag = True
+v51.3.3
+-------
+
+
+Misc
+^^^^
+* #2539: Fix AttributeError in Description validation.
+
+
v51.3.2
-------
license_files =
LICENSE
name = setuptools
-version = 51.3.2
+version = 51.3.3
author = Python Packaging Authority
author_email = distutils-sig@python.org
description = Easily download, build, install, upgrade, and uninstall Python packages
# quick and dirty validation for description pypa/setuptools#1390
if '\n' in val:
# TODO after 2021-07-31: Replace with `raise ValueError("newlines not allowed")`
- warnings.UserWarning("newlines not allowed and will break in the future")
+ warnings.warn("newlines not allowed and will break in the future")
val = val.replace('\n', ' ')
return val