Skip to content

Commit 0b0364c

Browse files
committedMar 9, 2022
version bump for 1.3.3 release
1 parent 6b4ea76 commit 0b0364c

File tree

3 files changed

+8
-31
lines changed

3 files changed

+8
-31
lines changed
 

‎custom_components/pyscript/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"zeroconf": [],
1010
"homekit": {},
1111
"dependencies": [],
12-
"version": "1.3.2",
12+
"version": "1.3.3",
1313
"iot_class": "local_push",
1414
"codeowners": [
1515
"@craigbarratt"

‎docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
# -- Project information -----------------------------------------------------
2020

2121
project = 'hacs-pyscript'
22-
copyright = '2020-2021, Craig Barratt'
22+
copyright = '2020-2022, Craig Barratt'
2323
author = 'Craig Barratt'
2424

2525
# The full version, including alpha/beta/rc tags
26-
release = '1.3.2'
26+
release = '1.3.3'
2727

2828
master_doc = 'index'
2929

‎docs/new_features.rst

+5-28
Original file line numberDiff line numberDiff line change
@@ -8,38 +8,15 @@ You can also install the master (head of tree) version from GitHub, either using
88
Because pyscript has quite a few unit tests, generally the master version should work ok. But it's not
99
guaranteed to work at any random time, and newly-added features might change.
1010

11-
..
12-
This release is 1.3.2, released on May 9, 2021. Here is the `documentation
13-
<https://hacs-pyscript.readthedocs.io/en/1.3.2>`__ for this release.
14-
15-
The latest release is 1.3.2, released on May 9, 2021. Here is the `documentation
16-
<https://hacs-pyscript.readthedocs.io/en/1.3.2>`__ for that release.
11+
This is 1.3.3, released on March 9, 2022. Here is the `documentation
12+
<https://hacs-pyscript.readthedocs.io/en/1.3.3>`__ for that release. Here is the
13+
`stable documentation <https://hacs-pyscript.readthedocs.io/en/stable>`__ for
14+
the latest release.
1715

1816
Over time, the master (head of tree) version in GitHub will include new features and bug fixes.
1917
Here is the `latest documentation <https://hacs-pyscript.readthedocs.io/en/latest>`__ if you want
2018
to see the development version of the documentation.
2119

22-
If you want to see development progress since 1.3.2, see
20+
If you want to see development progress since 1.3.3, see
2321
`new features <https://hacs-pyscript.readthedocs.io/en/latest/new_features.html>`__ in the latest
2422
documentation, or look at the `GitHub repository <https://github.com/custom-components/pyscript>`__.
25-
26-
Planned new features post 1.3.2 include:
27-
28-
- Services defined in pyscript should support entity methods if they include an ``entity_id`` keyword argument.
29-
- Consider supporting the built-in functions that do I/O, such as ``open``, ``read`` and ``write``, which
30-
are not currently supported to avoid I/O in the main event loop, and also to avoid security issues if people
31-
share pyscripts. The ``print`` function only logs a message, rather than implements the real ``print`` features,
32-
such as specifying an output file handle. Support might be added in the future using an executor job, perhaps
33-
enabled when ``allow_all_imports`` is set.
34-
35-
The new features since 1.3.2 in master include:
36-
37-
None yet.
38-
39-
Breaking changes since 1.3.2 include:
40-
41-
None yet.
42-
43-
Bug fixes since 1.3.2 include:
44-
45-
None yet.

0 commit comments

Comments
 (0)
Please sign in to comment.