summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonard Richardson <leonardr@segfault.org>2018-12-31 12:36:45 -0500
committerLeonard Richardson <leonardr@segfault.org>2018-12-31 12:36:45 -0500
commit4ded825d323d51332cc0de579bb9e0d0de92ab9e (patch)
tree2b2ec753848b0d06ebc9087a807640b243f042c8
parent930adda6bf6e34e8ebcc446507f5227705f0be21 (diff)
downloadbeautifulsoup4-4ded825d323d51332cc0de579bb9e0d0de92ab9e.tar.gz
Prep for release.
-rw-r--r--AUTHORS (renamed from AUTHORS.txt)28
-rw-r--r--CHANGELOG (renamed from NEWS.txt)4
-rw-r--r--bs4/__init__.py2
3 files changed, 21 insertions, 13 deletions
diff --git a/AUTHORS.txt b/AUTHORS
index ea6f785..1f14fe0 100644
--- a/AUTHORS.txt
+++ b/AUTHORS
@@ -1,9 +1,10 @@
Behold, mortal, the origins of Beautiful Soup...
================================================
-Leonard Richardson is the primary programmer.
+Leonard Richardson is the primary maintainer.
-Aaron DeVore is awesome.
+Aaron DeVore and Isaac Muse have made significant contributions to the
+code base.
Mark Pilgrim provided the encoding detection code that forms the base
of UnicodeDammit.
@@ -12,7 +13,8 @@ Thomas Kluyver and Ezio Melotti finished the work of getting Beautiful
Soup 4 working under Python 3.
Simon Willison wrote soupselect, which was used to make Beautiful Soup
-support CSS selectors.
+support CSS selectors. Isaac Muse wrote SoupSieve, which made it
+possible to _remove_ the CSS selector code from Beautiful Soup.
Sam Ruby helped with a lot of edge cases.
@@ -22,13 +24,17 @@ work in solving the nestable tags conundrum.
An incomplete list of people have contributed patches to Beautiful
Soup:
- Istvan Albert, Andrew Lin, Anthony Baxter, Andrew Boyko, Tony Chang,
- Zephyr Fang, Fuzzy, Roman Gaufman, Yoni Gilad, Richie Hindle, Peteris
- Krumins, Kent Johnson, Ben Last, Robert Leftwich, Staffan Malmgren,
- Ksenia Marasanova, JP Moins, Adam Monsen, John Nagle, "Jon", Ed
- Oskiewicz, Greg Phillips, Giles Radford, Arthur Rudolph, Marko
- Samastur, Jouni Seppänen, Alexander Schmolck, Andy Theyers, Glyn
- Webster, Paul Wright, Danny Yoo
+ Istvan Albert, Andrew Lin, Anthony Baxter, Oliver Beattie, Andrew
+Boyko, Tony Chang, Francisco Canas, "Delong", Zephyr Fang, Fuzzy,
+Roman Gaufman, Yoni Gilad, Richie Hindle, Toshihiro Kamiya, Peteris
+Krumins, Kent Johnson, Marek Kapolka, Andreas Kostyrka, Roel Kramer,
+Ben Last, Robert Leftwich, Stefaan Lippens, "liquider", Staffan
+Malmgren, Ksenia Marasanova, JP Moins, Adam Monsen, John Nagle, "Jon",
+Ed Oskiewicz, Martijn Peters, Greg Phillips, Giles Radford, Stefano
+Revera, Arthur Rudolph, Marko Samastur, James Salter, Jouni Seppänen,
+Alexander Schmolck, Tim Shirley, Geoffrey Sneddon, Ville Skyttä,
+"Vikas", Jens Svalgaard, Andy Theyers, Eric Weiser, Glyn Webster, John
+Wiseman, Paul Wright, Danny Yoo
An incomplete list of people who made suggestions or found bugs or
found ways to break Beautiful Soup:
@@ -38,6 +44,6 @@ found ways to break Beautiful Soup:
Matt Patterson, Scott Roberts, Steve Strassmann, Mike Williams,
warchild at redho dot com, Sami Kuisma, Carlos Rocha, Bob Hutchison,
Joren Mc, Michal Migurski, John Kleven, Tim Heaney, Tripp Lilley, Ed
- Summers, Dennis Sutch, Chris Smith, Aaron Sweep^W Swartz, Stuart
+ Summers, Dennis Sutch, Chris Smith, Aaron Swartz, Stuart
Turner, Greg Edwards, Kevin J Kalupson, Nikos Kouremenos, Artur de
Sousa Rocha, Yichun Wei, Per Vognsen
diff --git a/NEWS.txt b/CHANGELOG
index 5052413..05f14a7 100644
--- a/NEWS.txt
+++ b/CHANGELOG
@@ -1,4 +1,4 @@
-= 4.7.0 (Unreleased)
+= 4.7.0 (20181231)
* Beautiful Soup's CSS Selector implementation has been replaced by a
dependency on Isaac Muse's SoupSieve project (the soupsieve package
@@ -30,6 +30,8 @@
* Clarified ambiguous license statements in the source code. Beautiful
Soup is released under the MIT license, and has been since 4.4.0.
+* This file has been renamed from NEWS.txt to CHANGELOG.
+
= 4.6.3 (20180812)
* Exactly the same as 4.6.2. Re-released to make the README file
diff --git a/bs4/__init__.py b/bs4/__init__.py
index 9b4a046..c58ff85 100644
--- a/bs4/__init__.py
+++ b/bs4/__init__.py
@@ -19,7 +19,7 @@ http://www.crummy.com/software/BeautifulSoup/bs4/doc/
__author__ = "Leonard Richardson (leonardr@segfault.org)"
__version__ = "4.7.0"
-__copyright__ = "Copyright (c) 2004-2018 Leonard Richardson"
+__copyright__ = "Copyright (c) 2004-2019 Leonard Richardson"
# Use of this source code is governed by the MIT license.
__license__ = "MIT"