Skip to content
This repository has been archived by the owner on Sep 16, 2021. It is now read-only.

Commit

Permalink
Update release notes for v2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
davehunt committed Aug 13, 2018
1 parent e248698 commit 941f646
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 18 deletions.
26 changes: 26 additions & 0 deletions docs/news.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,32 @@ Release Notes

.. towncrier release notes start
2.1.0 (2018-08-13)
==================

Bugfixes
--------

- Replace use of ``implprefix`` with ``HookimplMarker`` due to deprecation.

Existing PyPOM plugins will need to be updated to import the `hookimpl` and use
it to decorate hook implementations rather than rely on the prefix of the
function names.

Before::

def pypom_after_wait_for_page_to_load(page):
pass

After::

from pypom import hookimpl

@hookimpl
def pypom_after_wait_for_page_to_load(page):
pass (#90)


2.0.0 (2018-04-17)
==================

Expand Down
18 changes: 0 additions & 18 deletions src/pypom/newsfragments/90.bugfix

This file was deleted.

0 comments on commit 941f646

Please sign in to comment.