Bug 1572383 - Bump version numbers for mozprofile and mozrunner, r=gbrown

Bug 1539437 indtroduced a new ChromiumProfile class in mozprofile
that's imported into mozrunner. This means that the 7.5.0 release of
mozrunner should have been accompanied by a corresponding mozprofile
release and requirements version bump.

Differential Revision: https://phabricator.services.mozilla.com/D41167

--HG--
extra : moz-landing-system : lando
This commit is contained in:
James Graham 2019-08-08 13:35:06 +00:00
parent ad56b12bc8
commit e6b3c4085c
2 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ from __future__ import absolute_import
from setuptools import setup
PACKAGE_NAME = 'mozprofile'
PACKAGE_VERSION = '2.2.0'
PACKAGE_VERSION = '2.3.0'
deps = [
'mozfile>=1.2',

View File

@ -7,7 +7,7 @@ from __future__ import absolute_import
from setuptools import setup, find_packages
PACKAGE_NAME = 'mozrunner'
PACKAGE_VERSION = '7.5.0'
PACKAGE_VERSION = '7.5.1'
desc = """Reliable start/stop/configuration of Mozilla Applications (Firefox, Thunderbird, etc.)"""
@ -17,7 +17,7 @@ deps = [
'mozinfo>=0.7,<2',
'mozlog~=4.2.0',
'mozprocess>=0.23,<2',
'mozprofile~=2.1',
'mozprofile~=2.3',
'six>=1.10.0,<2',
]