diff --git a/CHANGELOG.md b/CHANGELOG.md index 830673c6..94b0d69f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. +## [0.24.0] - 2021-02-10 +### Added +- Support for shadow DOM in the form of the ShadowRoot Field. + ## [0.23.0] - 2021-01-18 ### Fixed - Nesting Repeating, Area, and RepeatingArea now correctly assigns root diff --git a/docs/conf.py b/docs/conf.py index cd61c1ce..c431dd52 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -60,9 +60,9 @@ # built documents. # # The short X.Y version. -version = '0.23.0' +version = '0.24.0' # The full version, including alpha/beta/rc tags. -release = '0.23.0' +release = '0.24.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 a7a4db5a..410be2df 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ def read(filename): setup( name="stere", - version="0.23.0", + version="0.24.0", description="A nice way of implementing the Page Object pattern.", long_description=read('README.rst'), author="Joshua Fehler",