aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAng Li <angli@google.com>2023-01-18 00:23:10 -0800
committerGitHub <noreply@github.com>2023-01-18 00:23:10 -0800
commit2fd507d8df3a8ab379689cdda04f854366839838 (patch)
tree4ad51b76a24ea9a043bd151013c6ce040781d45b
parent86688d320670f924e709340c0d84b306fbbf2a17 (diff)
downloadmobly-2fd507d8df3a8ab379689cdda04f854366839838.tar.gz
Mobly Release 1.12.1. (#866)
-rw-r--r--CHANGELOG.md13
-rwxr-xr-xsetup.py4
2 files changed, 15 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ed34c68..a94d23c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,19 @@
# Mobly Release History
+## Mobly Release 1.12.1: Minor Improvements and Fixes
+
+### New
+* A logger adapter that makes it easier for modules to add their own log line prefixes
+
+### Fixes
+* `is_emulator` property now works for Cuttlefish image
+* Handle SIGTERM properly
+* Fixed missing result fields and output directories
+
+[Full list of changes](https://github.com/google/mobly/milestone/28?closed=1)
+
+
## Mobly Release 1.12: New Snippet Base Client and a New `pre_run` Stage
This release introduces the new generic Mobly snippet base client and the new
diff --git a/setup.py b/setup.py
index 6770eab..a278b26 100755
--- a/setup.py
+++ b/setup.py
@@ -46,13 +46,13 @@ class PyTest(test.test):
def main():
setuptools.setup(
name='mobly',
- version='1.12',
+ version='1.12.1',
maintainer='Ang Li',
maintainer_email='mobly-github@googlegroups.com',
description='Automation framework for special end-to-end test cases',
license='Apache2.0',
url='https://github.com/google/mobly',
- download_url='https://github.com/google/mobly/tarball/1.12',
+ download_url='https://github.com/google/mobly/tarball/1.12.1',
packages=setuptools.find_packages(exclude=['tests']),
include_package_data=False,
scripts=['tools/sl4a_shell.py', 'tools/snippet_shell.py'],