Skip to content

Commit 918b465

Browse files
committed
bump version to 1.5.0
1 parent 6784deb commit 918b465

File tree

4 files changed

+15
-36
lines changed

4 files changed

+15
-36
lines changed

custom_components/pyscript/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
"issue_tracker": "https://github.com/custom-components/pyscript/issues",
1313
"requirements": ["croniter==1.3.8", "watchdog==2.3.1"],
1414
"ssdp": [],
15-
"version": "1.4.0",
15+
"version": "1.5.0",
1616
"zeroconf": []
1717
}

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
author = 'Craig Barratt'
2424

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

2828
master_doc = 'index'
2929

docs/new_features.rst

+3-24
Original file line numberDiff line numberDiff line change
@@ -8,36 +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-
This is 1.4.0, released on April 4, 2023. Here is the `documentation
12-
<https://hacs-pyscript.readthedocs.io/en/1.4.0>`__ for that release. Here is the
11+
This is 1.5.0, released on July 30, 2023. Here is the `documentation
12+
<https://hacs-pyscript.readthedocs.io/en/1.5.0>`__ for that release. Here is the
1313
`stable documentation <https://hacs-pyscript.readthedocs.io/en/stable>`__ for
1414
the latest release.
1515

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

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

info.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22

33
This is a custom component that adds rich Python scripting to Home Assistant.
44

5-
You can write Python functions and scripts that implement a wide range of automation, logic and
6-
triggers. State variables are bound to Python variables and services are callable as Python
7-
functions, so it's easy and concise to implement high-level logic.
8-
9-
Functions you write can be configured to be called as a service or run upon time, state-change or
10-
event triggers. Functions can also call any service, fire events and set state variables.
11-
Functions can sleep or wait for additional changes in state variables or events, without slowing or
12-
affecting other operations. You can think of these functions as small programs that run in
5+
You can write Python functions and scripts that implement a wide range of automation, logic
6+
and triggers. State variables are bound to Python variables and services are callable as
7+
Python functions, so it's easy and concise to implement high-level logic.
8+
9+
Functions you write can be configured to be called as a service or run upon time, state-change
10+
or event triggers. Functions can also call any service, fire events and set state variables.
11+
Functions can sleep or wait for additional changes in state variables or events, without slowing
12+
or affecting other operations. You can think of these functions as small programs that run in
1313
parallel, independently of each other, and they could be active for extended periods of time.
1414

15-
Pyscript also interfaces with the Jupyter front-ends (eg, notebook, console and lab). That allows
16-
you to develop and test pyscript functions, triggers, automation and logic interactively.
15+
Pyscript also interfaces with the Jupyter front-ends (eg, notebook, console, lab and VSCode). That
16+
allows you to develop and test pyscript functions, triggers, automation and logic interactively.
1717

1818
## Installation
1919

0 commit comments

Comments
 (0)