Skip to content

Commit 4ab6725

Browse files
committed
v2.1.5
Updated stubs to v1.19.1-796
1 parent 66f84c8 commit 4ab6725

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ All notable changes to the "pico-w-go" extension will be documented in this file
1616
- Remove telnet and unix socket interfaces as they are never used and unable to connect to any plain MicroPython Raspberry Pi Pico (W) board
1717
- Mounting the MicroPython filesystem into VS Code as a remote workspace.
1818

19+
## [2.1.5] - 2023-01-15
20+
21+
# Changed
22+
- Updated stubs to 'Firmware v1.19.1-796 unstable'
23+
1924
## [2.1.4] - 2022-12-20
2025

2126
### Changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Pico-W-Go provides code auto-completion and allows you to communicate with your Raspberry Pi Pico (W) board using the built-in REPL console. Run a single file on your board, sync your entire project or directly type and execute commands.
44

5-
> __Auto-completion based on Raspberry Pi Pico W MicroPython firmware: [rp2-pico-w-20221027-unstable-v1.19.1-594-g65fa7fd8b.uf2](https://micropython.org/resources/firmware/rp2-pico-w-20221027-unstable-v1.19.1-594-g65fa7fd8b.uf2)__
5+
> __Auto-completion based on Raspberry Pi Pico W MicroPython firmware: [rp2-pico-w-20230113-unstable-v1.19.1-796-gf4811b0b4.uf2](https://micropython.org/resources/firmware/rp2-pico-w-20230113-unstable-v1.19.1-796-gf4811b0b4.uf2)__
66
77
This software is originally based on [Pico-Go](https://github.com/cpwood/Pico-Go) by cpwood.
88

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "pico-w-go",
33
"displayName": "Pico-W-Go",
44
"description": "Autocompletion and a REPL console for the Raspberry Pi Pico (W).",
5-
"version": "2.1.4",
5+
"version": "2.1.5",
66
"publisher": "paulober",
77
"license": "SEE LICENSE IN LICENSE.md",
88
"homepage": "https://github.com/paulober/Pico-W-Go/blob/main/README.md",

stubs/stdlib/usys.pyi

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
"""
22
Module: 'usys' on micropython-v1.19.1-rp2
33
"""
4-
# MCU: {'ver': 'v1.19.1', 'build': '', 'sysname': 'rp2', 'platform': 'rp2', 'version': '1.19.1', 'release': '1.19.1', 'port': 'rp2', 'family': 'micropython', 'name': 'micropython', 'machine': 'Raspberry Pi Pico W with RP2040', 'nodename': 'rp2'}
54
from typing import Any
65

76
argv = [] # type: list
@@ -69,7 +68,7 @@ stdin : Any ## <class 'FileIO'> = <io.FileIO 0>
6968
"""Standard input ``stream``."""
7069
stdout : Any ## <class 'FileIO'> = <io.FileIO 1>
7170
"""Standard output ``stream``."""
72-
version = '3.4.0; MicroPython v1.19.1-780-g439298be1 on 2022-12-20' # type: str
71+
version = '3.4.0; MicroPython v1.19.1-796-gf4811b0b4 on 2023-01-13' # type: str
7372
"""Python language version that this implementation conforms to, as a string."""
7473
version_info = () # type: tuple
7574
"""Python language version that this implementation conforms to, as a tuple of ints."""

stubs/version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"version": "1.19.1-780"}
1+
{"version": "1.19.1-796"}

0 commit comments

Comments
 (0)