1
1
mirror of https://git.launchpad.net/beautifulsoup synced 2025-10-06 00:12:49 +02:00

Added information to CHANGELOG I forgot to add earlier.

This commit is contained in:
Leonard Richardson
2018-12-31 13:02:57 -05:00
parent 75d2d61953
commit 4a5aa558df
2 changed files with 18 additions and 0 deletions

View File

@@ -14,6 +14,12 @@
SoupSieve documentation: https://facelessuser.github.io/soupsieve/
* Added the PageElement.extend() method, which works like list.append().
[bug=1514970]
* PageElement.insert_before() and insert_after() now take a variable
number of arguments. [bug=1514970]
* Fix a number of problems with the tree builder that caused
trees that were superficially okay, but which fell apart when bits
were extracted. Patch by Isaac Muse. [bug=1782928,1809910]

View File

@@ -13,6 +13,18 @@
rm -rf build dist
# Run this in a Python 2 env and a Python 3 env to make both sdist and
# wheels.
python setup.py sdist bdist_wheel
# Run this in Python 3 env.
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
twine upload dist/*
# Old instructions:
# Create the 2.x source distro and wheel
python setup.py sdist bdist_wheel