Skip to content
This repository has been archived by the owner on Aug 20, 2018. It is now read-only.

Commit

Permalink
Bug 696341 - Bump Mozmill version to 1.5.6 and release it on pypi and…
Browse files Browse the repository at this point in the history
… AMO;r=whimboo
  • Loading branch information
Jeff Hammel committed Oct 21, 2011
1 parent d14743a commit 7bc5772
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion jsbridge/jsbridge/extension/install.rdf
Expand Up @@ -4,7 +4,7 @@
<Description about="urn:mozilla:install-manifest"> <Description about="urn:mozilla:install-manifest">
<em:id>jsbridge@mozilla.com</em:id> <em:id>jsbridge@mozilla.com</em:id>
<em:name>jsbridge</em:name> <em:name>jsbridge</em:name>
<em:version>2.4.5</em:version> <em:version>2.4.6</em:version>
<em:creator>Mikeal Rogers</em:creator> <em:creator>Mikeal Rogers</em:creator>
<em:description>Python to JavaScript bridge</em:description> <em:description>Python to JavaScript bridge</em:description>
<em:unpack>true</em:unpack> <em:unpack>true</em:unpack>
Expand Down
4 changes: 2 additions & 2 deletions jsbridge/setup.py
Expand Up @@ -42,9 +42,9 @@
summ = """A powerful and extensible Python to JavaScript bridge interface.""" summ = """A powerful and extensible Python to JavaScript bridge interface."""


PACKAGE_NAME = "jsbridge" PACKAGE_NAME = "jsbridge"
PACKAGE_VERSION = "2.4.5" PACKAGE_VERSION = "2.4.6"


requires = ['mozrunner == 2.5.6'] requires = ['mozrunner == 2.5.7']


if not sys.version.startswith('2.6'): if not sys.version.startswith('2.6'):
requires.append('simplejson') requires.append('simplejson')
Expand Down
2 changes: 1 addition & 1 deletion mozmill/mozmill/extension/install.rdf
Expand Up @@ -4,7 +4,7 @@
<Description about="urn:mozilla:install-manifest"> <Description about="urn:mozilla:install-manifest">
<em:id>mozmill@mozilla.com</em:id> <em:id>mozmill@mozilla.com</em:id>
<em:name>MozMill</em:name> <em:name>MozMill</em:name>
<em:version>1.5.5</em:version> <em:version>1.5.6</em:version>
<em:creator>Adam Christian</em:creator> <em:creator>Adam Christian</em:creator>
<em:description>A testing extension based on the Windmill Testing Framework client source</em:description> <em:description>A testing extension based on the Windmill Testing Framework client source</em:description>
<em:unpack>true</em:unpack> <em:unpack>true</em:unpack>
Expand Down
6 changes: 3 additions & 3 deletions mozmill/setup.py
Expand Up @@ -41,7 +41,7 @@
summ = """A tool for full UI automation of Mozilla applications.""" summ = """A tool for full UI automation of Mozilla applications."""


PACKAGE_NAME = "mozmill" PACKAGE_NAME = "mozmill"
PACKAGE_VERSION = "1.5.5" PACKAGE_VERSION = "1.5.6"


setup(name=PACKAGE_NAME, setup(name=PACKAGE_NAME,
version=PACKAGE_VERSION, version=PACKAGE_VERSION,
Expand All @@ -62,8 +62,8 @@
mozmill-restart = mozmill:restart_cli mozmill-restart = mozmill:restart_cli
""", """,
platforms =['Any'], platforms =['Any'],
install_requires = ['jsbridge == 2.4.5', install_requires = ['jsbridge == 2.4.6',
'mozrunner == 2.5.6', 'mozrunner == 2.5.7',
'ManifestDestiny == 0.2.2'], 'ManifestDestiny == 0.2.2'],
classifiers=['Development Status :: 4 - Beta', classifiers=['Development Status :: 4 - Beta',
'Environment :: Console', 'Environment :: Console',
Expand Down
2 changes: 1 addition & 1 deletion mozrunner/setup.py
Expand Up @@ -41,7 +41,7 @@
desc = """Reliable start/stop/configuration of Mozilla Applications (Firefox, Thunderbird, etc.)""" desc = """Reliable start/stop/configuration of Mozilla Applications (Firefox, Thunderbird, etc.)"""


PACKAGE_NAME = "mozrunner" PACKAGE_NAME = "mozrunner"
PACKAGE_VERSION = "2.5.6" PACKAGE_VERSION = "2.5.7"


deps = [] deps = []


Expand Down

0 comments on commit 7bc5772

Please sign in to comment.