From 2f8f472b834450567b8c7b2b521e42c16e20b655 Mon Sep 17 00:00:00 2001 From: Jesse Zoldak Date: Fri, 17 Jun 2016 16:11:52 -0400 Subject: [PATCH] v0.6.0 --- CHANGELOG | 7 +++++++ docs/conf.py | 4 ++-- setup.py | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index c4ac9a48..0c3a4b93 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,10 @@ +v0.6.0 (06/17/16) +* Support Python 3 +* Use pytest to run tests +* Save browser page source on failure +* Allow configuration of the firefox profile +* Upgrade dependencies, improve test coverage + v0.5.4 (06/16/16) * Remove browsermobproxy and HAR capture feature * Add ability to save browser page source to disk diff --git a/docs/conf.py b/docs/conf.py index b3dd4e49..3de4a98f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -38,9 +38,9 @@ # built documents. # # The short X.Y version. -version = '0.5.4' +version = '0.6.0' # The full version, including alpha/beta/rc tags. -release = '0.5.4' +release = '0.6.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 98c300cd..bee86717 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ import codecs from setuptools import setup -VERSION = '0.5.4' +VERSION = '0.6.0' DESCRIPTION = 'UI-level acceptance test framework' REQUIREMENTS = ( 'lazy',