diff --git a/CHANGELOG b/CHANGELOG index aff6d4ef..83f9c0a8 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +v1.0.0 (04/17/19) +* Bump axe-core dependency from 1.1 to 3.2.2 + v0.9.3 (02/14/19) * PageLoadError and WrongPageError now inherit WebDriverException so they can trigger retries instead of immediately failing tests diff --git a/docs/conf.py b/docs/conf.py index 3d9849be..ff285d87 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -42,9 +42,9 @@ # built documents. # # The short X.Y version. -version = '0.9.2' +version = '1.0.0' # The full version, including alpha/beta/rc tags. -release = '0.9.2' +release = '1.0.0' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. diff --git a/setup.py b/setup.py index 4693b695..ccc600ee 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ import sys from setuptools import setup -VERSION = '0.9.3' +VERSION = '1.0.0' DESCRIPTION = 'UI-level acceptance test framework'