From 8414059153ddb98d4ac84e5db7b6b42fead8d35c Mon Sep 17 00:00:00 2001 From: Craig Barratt <19445341+craigbarratt@users.noreply.github.com> Date: Sat, 27 Jul 2024 18:44:50 -0700 Subject: [PATCH] updates for 1.6.1 release --- custom_components/pyscript/manifest.json | 2 +- docs/conf.py | 2 +- docs/new_features.rst | 27 +++--------------------- 3 files changed, 5 insertions(+), 26 deletions(-) diff --git a/custom_components/pyscript/manifest.json b/custom_components/pyscript/manifest.json index 8a13484..7ff4d13 100644 --- a/custom_components/pyscript/manifest.json +++ b/custom_components/pyscript/manifest.json @@ -12,6 +12,6 @@ "issue_tracker": "https://github.com/custom-components/pyscript/issues", "requirements": ["croniter==2.0.2", "watchdog==2.3.1"], "ssdp": [], - "version": "1.6.0", + "version": "1.6.1", "zeroconf": [] } diff --git a/docs/conf.py b/docs/conf.py index 49e8cd4..855c771 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -23,7 +23,7 @@ author = 'Craig Barratt' # The full version, including alpha/beta/rc tags -release = '1.6.0' +release = '1.6.1' master_doc = 'index' diff --git a/docs/new_features.rst b/docs/new_features.rst index b28975f..44d831e 100644 --- a/docs/new_features.rst +++ b/docs/new_features.rst @@ -8,8 +8,8 @@ You can also install the master (head of tree) version from GitHub, either using Because pyscript has quite a few unit tests, generally the master version should work ok. But it's not guaranteed to work at any random time, and newly-added features might change. -This is 1.6.0, released on July 26, 2024. Here is the `documentation -`__ for that release. Here is the +This is 1.6.1, released on July 27, 2024. Here is the `documentation +`__ for that release. Here is the `stable documentation `__ for the latest release. @@ -17,27 +17,6 @@ Over time, the master (head of tree) version in GitHub will include new features Here is the `latest documentation `__ if you want to see the development version of the documentation. -If you want to see development progress since 1.6.0, see +If you want to see development progress since 1.6.1, see `new features `__ in the latest documentation, or look at the `GitHub repository `__. - -Planned new features post 1.6.0 include: - -- Services defined in pyscript should support entity methods if they include an ``entity_id`` keyword argument. -- Consider supporting the built-in functions that do I/O, such as ``open``, ``read`` and ``write``, which - are not currently supported to avoid I/O in the main event loop, and also to avoid security issues if people - share pyscripts. The ``print`` function only logs a message, rather than implements the real ``print`` features, - such as specifying an output file handle. Support might be added in the future using an executor job, perhaps - enabled when ``allow_all_imports`` is set. - -The new features since 1.6.0 in master include: - -None yet. - -Breaking changes since 1.6.0 include: - -None yet. - -Bug fixes since 1.6.0 include: - -None yet.