diff --git a/beautifulsoup4-4.10.0.tar.gz b/beautifulsoup4-4.10.0.tar.gz new file mode 100644 index 0000000..e6ad54c --- /dev/null +++ b/beautifulsoup4-4.10.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c23ad23c521d818955a4151a67d81580319d4bf548d3d49f4223ae041ff98891 +size 399890 diff --git a/beautifulsoup4-4.9.3.tar.gz b/beautifulsoup4-4.9.3.tar.gz deleted file mode 100644 index dad57fc..0000000 --- a/beautifulsoup4-4.9.3.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:84729e322ad1d5b4d25f805bfa05b902dd96450f43842c4e99067d5e1369eb25 -size 376031 diff --git a/python-beautifulsoup4.changes b/python-beautifulsoup4.changes index 379078f..8260ec9 100644 --- a/python-beautifulsoup4.changes +++ b/python-beautifulsoup4.changes @@ -1,3 +1,37 @@ +------------------------------------------------------------------- +Wed Feb 9 10:14:27 UTC 2022 - Steve Kowalik + +- Update to 4.10.0: + * This is the first release of Beautiful Soup to only support Python 3. + * The behavior of methods like .get_text() and .strings now differs + depending on the type of tag. + * NavigableString and its subclasses now implement the get_text() + method, as well as the properties .strings and + .stripped_strings. + * The 'html5' formatter now treats attributes whose values are the + empty string as HTML boolean attributes. + * The 'replace_with()' method now takes a variable number of arguments, + and can be used to replace a single element with a sequence of elements. + * Corrected output when the namespace prefix associated with a + namespaced attribute is the empty string, as opposed to + None. + * Performance improvement when processing tags that speeds up overall + tree construction by 2%. Patch by Morotti. [bug=1899358] + * Corrected the use of special string container classes in cases when a + single tag may contain strings with different containers; such as + the