From a10c519ff10be7653bdf1830e534bd06c8ca1f2c Mon Sep 17 00:00:00 2001 From: David Chang Date: Wed, 18 Dec 2024 18:40:58 +0800 Subject: [PATCH] ver Dec18thv2 updated Changelog and version numbers --- Changelog | 32 ++++++++++++++++++++++++++++++++ pyproject.toml | 2 +- setup.py | 2 +- 3 files changed, 34 insertions(+), 2 deletions(-) diff --git a/Changelog b/Changelog index 5116ea7..fbc7720 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,35 @@ +2024-12-18 Danyang Zhang + + v4.1 + + Fixed a few essential bugs. + + * (cache_until mechanism): The roles of waiting nodes and notifier nodes + in cache_until mechanism are in reverse. Fixed. + * android_env/components/task_manager.py + * (Event sources resetting): Event sources are not correctly reset during + task resetting. Fixed. + * android_env/components/task_manager.py + * (Events resetting): Events may be triggered mistakenly by the stale + emulator status owing to the delay of emulator. Fixed. + * android_env/components/coordinator.py + * android_env/environment.py + + Fixed minor bugs. + + * (Requirements of Gymnasium and dm-env): Gymnasium and dm-env are marked + as optional dependences, however they are imported in the wrappers module + as required sections. Fixed. + * android_env/wrappers/__init__.py + * (Crash when meeting unseen special tokens): The old behavior will crash + when meeting special tokens from the tokenizer. Now the new behavior is to + ignore them directly. + * android_env/components/task_manager.py + + Migrated logging system from absl to the embedded logging module. + Updated the template toolkit to enable non-automatic concatenation of + sub-task commands. + 2024-07-14 Danyang Zhang v4.0 diff --git a/pyproject.toml b/pyproject.toml index 2e16a4d..a5334f0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "mobile-env-rl" -version = "4.0" +version = "4.1" authors = [{name = "Danyang Zhang @X-Lance", email = "zdy004007@126.com"}] license = {file = "LICENSE"} description = "A Universal Platform for Training and Evaluation of Mobile Interaction" diff --git a/setup.py b/setup.py index 0659f22..526af6f 100644 --- a/setup.py +++ b/setup.py @@ -112,7 +112,7 @@ def run(self): setup( name='mobile-env-rl', - version='4.0', + version='4.1', description='Mobile-Env: A Universal Platform for Training and Evaluation of Mobile Interaction', long_description=description, author='Danyang Zhang @X-Lance',