From 1c98189e9e9b92715063dc2f0219bfa0547e5f83 Mon Sep 17 00:00:00 2001 From: Joshua Fehler Date: Tue, 19 Nov 2019 00:59:29 -0500 Subject: [PATCH] Bump version to 0.14.0 --- CHANGELOG.md | 5 +++++ setup.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ec9fbb3..4173b775 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ All notable changes to this project will be documented in this file. +## [0.14.0] - 2019-11-19 +### Fixed +- Repeating.has_children no longer fails if no children found. +- Repeating.has_children no longer builds a list of children containers, just checks roots. + ## [0.13.0] - 2019-11-16 ### Added - Field.is_ and Field.is_not_ methods now use Stere.retry_time if not specified. diff --git a/setup.py b/setup.py index 155232e4..06a6df66 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ def read(filename): setup( name="stere", - version="0.13.0", + version="0.14.0", description="A nice way of implementing the Page Object pattern.", long_description=read('README.rst'), author="Joshua Fehler",