diff --git a/README.md b/README.md index 744696c..7522e57 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,9 @@ The screenshots can be found in the following directories for now (issue 9 will Use `fetch_screenshots` to fetch screenshots from Mozilla automation (e.g. Try server): pip install -U mozscreenshots - fetch_screenshots -r 9f4d4ce255a1 + fetch_screenshots -n 2017-01-17 + fetch_screenshots --project mozilla-central -r 3e275d37a06236981bff399b7d7aa0646be3fee7 + fetch_screenshots -r # comparing images for changes diff --git a/mozscreenshots/__init__.py b/mozscreenshots/__init__.py index 9057a9b..284ecbb 100644 --- a/mozscreenshots/__init__.py +++ b/mozscreenshots/__init__.py @@ -4,4 +4,4 @@ from runner import * -__version__ = '0.3.1' +__version__ = '0.4.0' diff --git a/setup.py b/setup.py index 9ace5c4..705d29d 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import setup PACKAGE_NAME = 'mozscreenshots' -PACKAGE_VERSION = '0.3.1' +PACKAGE_VERSION = '0.4.0' desc = """Takes screenshots of different states of a Mozilla application"""