0.1.0 PiperOrigin-RevId: 576774820
diff --git a/CHANGELOG.md b/CHANGELOG.md index 22d0020..ccfa17f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md
@@ -1,2 +1,5 @@ +0.1.0 +- Improve the reliability of commissioning functionality + 0.0.0: Initial release - Support for commissioning Matter devices on Google Home App
diff --git a/README.md b/README.md index 3b29dc7..571a59c 100644 --- a/README.md +++ b/README.md
@@ -20,7 +20,7 @@ 1. You need to install Google Home App on your Android phone. 1. Login to your Google Home App. -1. Make sure the Google Home App's version is between `3.1.1.14` and `3.5.1.4`. +1. Make sure the Google Home App's version is between `3.1.1.14` and `3.7.1.4`. ### Installation
diff --git a/ui_automator/android/app/snippet-0.0.0.apk b/ui_automator/android/app/snippet-0.0.0.apk deleted file mode 100644 index 5f5d253..0000000 --- a/ui_automator/android/app/snippet-0.0.0.apk +++ /dev/null Binary files differ
diff --git a/ui_automator/android/app/snippet-0.1.0.apk b/ui_automator/android/app/snippet-0.1.0.apk new file mode 100644 index 0000000..d4ace1a --- /dev/null +++ b/ui_automator/android/app/snippet-0.1.0.apk Binary files differ
diff --git a/ui_automator/ui_automator.py b/ui_automator/ui_automator.py index 63343c6..bdea2d1 100644 --- a/ui_automator/ui_automator.py +++ b/ui_automator/ui_automator.py
@@ -262,7 +262,7 @@ os.path.dirname(os.path.abspath(__file__)), 'android', 'app', - 'snippet-0.0.0.apk', + 'snippet-0.1.0.apk', )
diff --git a/ui_automator/ui_automator_test.py b/ui_automator/ui_automator_test.py index 707264a..8063411 100644 --- a/ui_automator/ui_automator_test.py +++ b/ui_automator/ui_automator_test.py
@@ -182,7 +182,7 @@ self.ui_automator.load_snippet() self.mock_android_device.adb.install.assert_called_once_with( - ['-r', '-g', '/path/to/android/app/snippet-0.0.0.apk'] + ['-r', '-g', '/path/to/android/app/snippet-0.1.0.apk'] ) self.mock_android_device.adb.uninstall.assert_not_called() mock_dirname.assert_called_once() @@ -206,7 +206,7 @@ 'com.chip.interop.moblysnippet' ) self.mock_android_device.adb.install.assert_called_once_with( - ['-r', '-g', '/path/to/android/app/snippet-0.0.0.apk'] + ['-r', '-g', '/path/to/android/app/snippet-0.1.0.apk'] ) mock_dirname.assert_called_once()
diff --git a/ui_automator/version.py b/ui_automator/version.py index e16c465..e0f9f6b 100644 --- a/ui_automator/version.py +++ b/ui_automator/version.py
@@ -17,6 +17,6 @@ from typing import Optional -_SEMANTIC_VERSION = "0.0.0" +_SEMANTIC_VERSION = "0.1.0" VERSION = _SEMANTIC_VERSION