npm/jedi: v1.1.0

- Update pybricks_jedi Python package dependency.
- Bump JavaScript package version for release.
This commit is contained in:
David Lechner
2022-10-21 13:08:14 -05:00
parent fe126de264
commit 2a23c2e81d
2 changed files with 7 additions and 2 deletions
+5
View File
@@ -2,6 +2,11 @@
<!-- refer to https://keepachangelog.com/en/1.0.0/ for guidance -->
## 1.1.0 - 2022-10-21
### Changed
- Updated `pybricks_jedi` Python package to v1.2.0.
## 1.0.1 - 2022-09-07
### Fixed
+2 -2
View File
@@ -12,7 +12,7 @@ BUILD_DIR = (pathlib.Path(__file__).parent / "build").resolve()
package_json = {
"name": "@pybricks/jedi",
"version": "1.0.1",
"version": "1.2.0",
"description": "Binary distribution of pybricks-jedi Python package and dependencies for use with Pyodide.",
"repository": {
"type": "git",
@@ -38,7 +38,7 @@ subprocess.check_call(
"pip",
"download",
"--only-binary=any",
"pybricks-jedi==1.1.0",
"pybricks-jedi==1.2.0",
],
cwd=BUILD_DIR,
)