Skip to content

Commit 08308c5

Browse files
authored
Merge pull request #126 from paulober/develop
Hotfix v3.2.3
2 parents 1618c29 + b2c9409 commit 08308c5

File tree

18 files changed

+33
-29
lines changed

18 files changed

+33
-29
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ All notable changes to the "MicroPico" extension will be documented in this file
99

1010
---
1111

12+
## [3.2.3] - 2023-08-15
13+
14+
# Changed
15+
- Updated stubs to patch v1.20.0-4 stable (Fixes #125)
16+
1217
## [3.2.2] - 2023-08-14
1318

1419
# Added

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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": "MicroPico",
44
"description": "Auto-completion, remote workspace and a REPL console integration for the Raspberry Pi Pico (W) with MicroPython firmware.",
5-
"version": "3.2.2",
5+
"version": "3.2.3",
66
"publisher": "paulober",
77
"license": "MPL-2.0",
88
"homepage": "https://github.com/paulober/MicroPico/blob/main/README.md",

stubs/stdlib/array.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
from .uarray import *
1+
from uarray import *

stubs/stdlib/binascii.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
from .ubinascii import *
1+
from ubinascii import *

stubs/stdlib/errno.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
from .uerrno import *
1+
from uerrno import *

stubs/stdlib/hashlib.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
from .uhashlib import *
1+
from uhashlib import *

stubs/stdlib/heapq.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
from .uheapq import *
1+
from uheapq import *

stubs/stdlib/ussl.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Module: 'ssl' on micropython-v1.19.1-rp2
33
"""
44
# 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'}
5-
from .usocket import socket
5+
from usocket import socket
66

77
CERT_NONE = 0 # type: int
88
"""Supported value for cert_reqs parameter"""

stubs/stdlib/zlib.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
from .uzlib import *
1+
from uzlib import *

0 commit comments

Comments
 (0)