Skip to content

Commit

Permalink
Release 0.9.0
Browse files Browse the repository at this point in the history
Prepare ChangeLog.rst for release:
* Fix a few typos
* Document some smaller changes
* Remove "in development" from 0.9

Update the version in __version__.py.
  • Loading branch information
hemberger committed Nov 2, 2017
1 parent c5ad31f commit 6ab2358
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
19 changes: 13 additions & 6 deletions docs/ChangeLog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
Release Notes
=============

Version 0.9 (in development)
============================
Version 0.9
===========

Main changes:
-------------

* We do not rely on BeautifulSoup's default choice of HTML parser.
Instead, we now specify ``lxml`` as default. As a consequence, the
default setting requires ``lxml`` as dependency.
default setting requires ``lxml`` as a dependency.

* Python 2.6 and 3.3 are no longer supported.

Expand All @@ -20,15 +20,17 @@ Main changes:
@hemberger are now officially administrators of the project in
addition to @hickford, the original author.

* We now have a documentation: https://mechanicalsoup.readthedocs.io/
* We now have a documentation site: https://mechanicalsoup.readthedocs.io/.
The API is now fully documented, and we have included a tutorial,
several more code examples, and a FAQ.

* ``StatefulBrowser.select_form`` can now be called without argument,
and defaults to ``"form"`` in this case. It also has a new argument,
``nr`` (defaults to 0), which can be used to specify the index of
the form to select if multiple forms match the selection criteria.

* We now use requirement files. You can install the dependencies of
Mechanicalsoup with e.g.::
MechanicalSoup with e.g.::

pip install -r requirements.txt -r tests/requirements.txt

Expand Down Expand Up @@ -62,7 +64,9 @@ Bug fixes
* We don't error out anymore when trying to uncheck a box which
doesn't have a ``checkbox`` attribute.

Internal Changes
* ``Form.new_control`` now correctly overrides existing elements.

Internal changes
----------------

* The testsuite has been further improved and reached 100% coverage.
Expand All @@ -73,6 +77,9 @@ Internal Changes
* ``Browser.add_soup`` will now always attach a *soup*-attribute.
If the response is not text/html, then soup is set to None.

* ``Form.set(force=True)`` creates an ``<input type=text ...>``
element instead of an ``<input type=input ...>``.

Version 0.8
===========

Expand Down
2 changes: 1 addition & 1 deletion mechanicalsoup/__version__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__title__ = 'MechanicalSoup'
__description__ = 'A Python library for automating interaction with websites'
__url__ = 'http://mechanicalsoup.readthedocs.io/'
__version__ = '0.8.0'
__version__ = '0.9.0'
__license__ = 'MIT'

0 comments on commit 6ab2358

Please sign in to comment.