summaryrefslogtreecommitdiff
diff options
authorMarco Trevisan (Treviño) <mail@3v1n0.net>2021-01-20 18:23:09 +0100
committerMarco Trevisan (Treviño) <mail@3v1n0.net>2021-01-20 18:24:03 +0100
commitdfb01aa3cfead2a6c95429cb0eee7c9faf536d4a (patch)
tree9c96fa1af80c0b96fc009d876cb26606f779cdf5
parentef0c576a59293941a7e99637356577541c5f1124 (diff)
Bump revision to 1.6.1
-rw-r--r--README4
-rw-r--r--autopilot/_info.py2
-rw-r--r--autopilot/exceptions.py2
-rw-r--r--autopilot/tests/functional/__init__.py4
-rw-r--r--autopilot/tests/unit/test_exceptions.py2
-rw-r--r--debian/changelog8
-rw-r--r--setup.py2
7 files changed, 14 insertions, 10 deletions
diff --git a/README b/README
index b70287b4..b7f8a0af 100644
--- a/README
+++ b/README
@@ -12,7 +12,7 @@ Links
https://launchpad.net/autopilot
- Documentation (Tutorial, FAQ, API Reference, etc):
- https://developer.ubuntu.com/api/autopilot/python/1.6.0/
+ https://developer.ubuntu.com/api/autopilot/python/1.6.1/
- IRC channel is #ubuntu-autopilot on irc.freenode.net
@@ -67,7 +67,7 @@ Listing is similar::
For a more complete explanation for running or listing tests please see the
full documentation found here:
-https://developer.ubuntu.com/api/autopilot/python/1.6.0/guides-running_ap/
+https://developer.ubuntu.com/api/autopilot/python/1.6.1/guides-running_ap/
If you are in the root of the autopilot source tree this will run/list the tests from
within that local module. Otherwise autopilot will look in the system python path.
diff --git a/autopilot/_info.py b/autopilot/_info.py
index 7b0dfdde..1d984d11 100644
--- a/autopilot/_info.py
+++ b/autopilot/_info.py
@@ -28,7 +28,7 @@ __all__ = [
'version',
]
-version = '1.6.0'
+version = '1.6.1'
def have_vis():
diff --git a/autopilot/exceptions.py b/autopilot/exceptions.py
index 58b22ddb..cd45570b 100644
--- a/autopilot/exceptions.py
+++ b/autopilot/exceptions.py
@@ -91,7 +91,7 @@ class StateNotFoundError(RuntimeError):
_troubleshoot_url_message = (
'Tips on minimizing the occurrence of this failure '
'are available here: '
- 'https://developer.ubuntu.com/api/autopilot/python/1.6.0/'
+ 'https://developer.ubuntu.com/api/autopilot/python/1.6.1/'
'faq-troubleshooting/'
)
diff --git a/autopilot/tests/functional/__init__.py b/autopilot/tests/functional/__init__.py
index e04a2d3a..f852cb58 100644
--- a/autopilot/tests/functional/__init__.py
+++ b/autopilot/tests/functional/__init__.py
@@ -173,13 +173,13 @@ def _get_environment_patch(pythonpath):
load_entry_point_script = """\
#!/usr/bin/python
-__requires__ = 'autopilot==1.6.0'
+__requires__ = 'autopilot==1.6.1'
import sys
from pkg_resources import load_entry_point
if __name__ == '__main__':
sys.exit(
- load_entry_point('autopilot==1.6.0', 'console_scripts', 'autopilot3')()
+ load_entry_point('autopilot==1.6.1', 'console_scripts', 'autopilot3')()
)
"""
diff --git a/autopilot/tests/unit/test_exceptions.py b/autopilot/tests/unit/test_exceptions.py
index 0d27409e..5b8ff3fc 100644
--- a/autopilot/tests/unit/test_exceptions.py
+++ b/autopilot/tests/unit/test_exceptions.py
@@ -78,7 +78,7 @@ class StateNotFoundTests(TestCase):
EndsWith(
'Tips on minimizing the occurrence of this failure '
'are available here: '
- 'https://developer.ubuntu.com/api/autopilot/python/1.6.0/'
+ 'https://developer.ubuntu.com/api/autopilot/python/1.6.1/'
'faq-troubleshooting/'
)
)
diff --git a/debian/changelog b/debian/changelog
index f0505cc1..bb51acfd 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,10 +1,14 @@
-autopilot (1.6.0+17.04.20170313-0ubuntu14) UNRELEASED; urgency=medium
+autopilot (1.6.1-0ubuntu1) UNRELEASED; urgency=medium
+ [ Iain Lane ]
* debian/python3-autopilot.postinst: Allow udev trigger to fail. The rule
might not be runnable, e.g. in unprivileged containers, but this should
not be fatal to installation.
- -- Iain Lane <iain@orangesquash.org.uk> Wed, 20 Jan 2021 13:20:39 +0000
+ [ Marco Trevisan (Treviño) ]
+ * Bump revision to 1.6.1
+
+ -- Marco Trevisan (Treviño) <marco@ubuntu.com> Wed, 20 Jan 2021 18:23:20 +0100
autopilot (1.6.0+17.04.20170313-0ubuntu13) hirsute; urgency=medium
diff --git a/setup.py b/setup.py
index c46cd7a5..0b27cfd5 100644
--- a/setup.py
+++ b/setup.py
@@ -23,7 +23,7 @@ import sys
assert sys.version_info >= (3,), 'Python 3 is required'
-VERSION = '1.6.0'
+VERSION = '1.6.1'
autopilot_tracepoint = Extension(