From 6c4ceb0f0f9922ab5feb9358ee09a89f39fefddd Mon Sep 17 00:00:00 2001 From: Joshua Fehler Date: Fri, 25 Sep 2020 17:03:42 -0400 Subject: [PATCH] Bump version to 0.20.0 --- CHANGELOG.md | 5 +++++ setup.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 650d794b..a172068f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ All notable changes to this project will be documented in this file. +## [0.20.0] - 2020-09-25 +### Changed +- Stere.retry_time is used when searching for an attribute inside an element. +- Nicer error message is thrown when an element is not found while doing an attribute lookup + ## [0.19.0] - 2020-09-22 ### Changed - is_visible / is_not_visible methods try to handle stale element exceptions by retrying search diff --git a/setup.py b/setup.py index 15678817..35d8abd7 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ def read(filename): setup( name="stere", - version="0.19.0", + version="0.20.0", description="A nice way of implementing the Page Object pattern.", long_description=read('README.rst'), author="Joshua Fehler",