From 0b0364cf106964f4156bb87d722bb052d6803d67 Mon Sep 17 00:00:00 2001 From: Craig Barratt <19445341+craigbarratt@users.noreply.github.com> Date: Wed, 9 Mar 2022 10:53:00 -0800 Subject: [PATCH] version bump for 1.3.3 release --- custom_components/pyscript/manifest.json | 2 +- docs/conf.py | 4 +-- docs/new_features.rst | 33 ++++-------------------- 3 files changed, 8 insertions(+), 31 deletions(-) diff --git a/custom_components/pyscript/manifest.json b/custom_components/pyscript/manifest.json index 0074fa6..6f5df7d 100644 --- a/custom_components/pyscript/manifest.json +++ b/custom_components/pyscript/manifest.json @@ -9,7 +9,7 @@ "zeroconf": [], "homekit": {}, "dependencies": [], - "version": "1.3.2", + "version": "1.3.3", "iot_class": "local_push", "codeowners": [ "@craigbarratt" diff --git a/docs/conf.py b/docs/conf.py index 607f240..9399492 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -19,11 +19,11 @@ # -- Project information ----------------------------------------------------- project = 'hacs-pyscript' -copyright = '2020-2021, Craig Barratt' +copyright = '2020-2022, Craig Barratt' author = 'Craig Barratt' # The full version, including alpha/beta/rc tags -release = '1.3.2' +release = '1.3.3' master_doc = 'index' diff --git a/docs/new_features.rst b/docs/new_features.rst index 0d400f0..5fe366d 100644 --- a/docs/new_features.rst +++ b/docs/new_features.rst @@ -8,38 +8,15 @@ 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 release is 1.3.2, released on May 9, 2021. Here is the `documentation - `__ for this release. - -The latest release is 1.3.2, released on May 9, 2021. Here is the `documentation -`__ for that release. +This is 1.3.3, released on March 9, 2022. Here is the `documentation +`__ for that release. Here is the +`stable documentation `__ for +the latest release. Over time, the master (head of tree) version in GitHub will include new features and bug fixes. 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.3.2, see +If you want to see development progress since 1.3.3, see `new features `__ in the latest documentation, or look at the `GitHub repository `__. - -Planned new features post 1.3.2 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.3.2 in master include: - -None yet. - -Breaking changes since 1.3.2 include: - -None yet. - -Bug fixes since 1.3.2 include: - -None yet.