8000 fix default MicroPython version · pybricks/python-mpy-cross-multi@20f5797 · GitHub
[go: up one dir, main page]

Skip to content

Commit 20f5797

Browse files
committed
fix default MicroPython version
1 parent 2ddb71a commit 20f5797

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mpy_cross_multi/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def _run():
2828
idx = args.index("--micropython")
2929
except ValueError:
3030
# default if argument is not given
31-
mp_ver = "1.22"
31+
mp_ver = "1.23"
3232
else:
3333
# argument is given
3434
mp_ver = args.pop(idx + 1)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "mpy-cross-multi"
3-
version = "1.1.0"
3+
version = "1.1.1"
44
description = "MicroPython cross-compiler targeting multiple runtime versions."
55
authors = ["David Lechner <david@pybricks.com>"]
66
license = "MIT"

0 commit comments

Comments
 (0)
0