diff --git a/CHANGELOG.md b/CHANGELOG.md index 771aa45..15694b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog All notable changes to this project will be documented in this file. +## [0.31.0] - 2021-10-28 +### Changed +- Field.value_equals() and Field.value_contains() return an object that evaluates to a bool, instead of a bool. + ## [0.30.0] - 2021-09-13 ### Added - Area.text_to_dict() and Repeating.text_to_dict() methods. diff --git a/docs/conf.py b/docs/conf.py index e951d91..c0f1f7b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -60,9 +60,9 @@ # built documents. # # The short X.Y version. -version = '0.30.0' +version = '0.31.0' # The full version, including alpha/beta/rc tags. -release = '0.30.0' +release = '0.31.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 6a51650..b84dcb1 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ def read(filename): setup( name="stere", - version="0.30.0", + version="0.31.0", description="A nice way of implementing the Page Object pattern.", long_description=read('README.rst'), author="Joshua Fehler",