diff --git a/CHANGELOG b/CHANGELOG index bfe0f048..591866e1 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,17 @@ +v0.5.0 (3/22/16) +* Implement feature for XSS (cross-site scripting) vulnerability auditing +* Added `scroll_to_element(element_selector)` +* Make browser instantiation more resilient to transient webdriver failures +* Disable default promo tabs on firefox profile +* Updates for contributors (i.e. we use Slack now, not IRC) +* Various improvements for how the bok-choy repo itself is tested +* Python version compatibility improvements + +v0.4.11 (n/a) +* Skipped this release version due to infrastructure udpate (i.e., not releasing via Travis) + v0.4.10 (01/21/16) -* No changes. Just deploying to pypi via automation. +* No changes. Infrastructure updates. v0.4.9 (01/20/16) * Ability to release to pypi via Travis diff --git a/docs/conf.py b/docs/conf.py index 5d77dca4..f1094b9b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -38,9 +38,9 @@ # built documents. # # The short X.Y version. -version = '0.4.10' +version = '0.5.0' # The full version, including alpha/beta/rc tags. -release = '0.4.10' +release = '0.5.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 e8e5d7c5..ebac0ddf 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup -VERSION = '0.4.11' +VERSION = '0.5.0' DESCRIPTION = 'UI-level acceptance test framework' with open('requirements.txt') as f: REQUIREMENTS = f.read().splitlines()