diff --git a/doc/source/release.rst b/doc/source/release.rst index 3afb92848b143..55d0858ebbcde 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -35,6 +35,9 @@ pandas 0.13 **Improvements to existing features** + - ``read_html`` now raises a ``URLError`` instead of catching and raising a + ``ValueError`` (:issue:`4303`, :issue:`4305`) + **API Changes** **Experimental Features** @@ -128,8 +131,6 @@ pandas 0.12 of the default datetime.min and datetime.max (respectively), thanks @SleepingPills - ``read_html`` now raises when no tables are found and BeautifulSoup==4.2.0 is detected (:issue:`4214`) - - ``read_html`` now raises a ``URLError`` instead of catching and raising a - ``ValueError`` (:issue:`4303`, :issue:`4305`) **API Changes** diff --git a/doc/source/v0.12.0.txt b/doc/source/v0.12.0.txt index c5731a3e9a188..b7d52c6fed7e0 100644 --- a/doc/source/v0.12.0.txt +++ b/doc/source/v0.12.0.txt @@ -348,8 +348,6 @@ Other Enhancements - ``read_html`` now raises when no tables are found and BeautifulSoup==4.2.0 is detected (:issue:`4214`) - - ``read_html`` now raises a ``URLError`` instead of catching and raising a - ``ValueError`` (:issue:`4303`, :issue:`4305`) Experimental Features ~~~~~~~~~~~~~~~~~~~~~ diff --git a/doc/source/v0.13.0.txt b/doc/source/v0.13.0.txt index cd28a7907f5ed..f64fae966ac94 100644 --- a/doc/source/v0.13.0.txt +++ b/doc/source/v0.13.0.txt @@ -12,6 +12,9 @@ API changes Enhancements ~~~~~~~~~~~~ + - ``read_html`` now raises a ``URLError`` instead of catching and raising a + ``ValueError`` (:issue:`4303`, :issue:`4305`) + Bug Fixes ~~~~~~~~~