Skip to content

Commit 2c202f0

Browse files
committed
stubber: release v1.23.1
1 parent e66daf8 commit 2c202f0

18 files changed

+953
-2596
lines changed

mip/full.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818
]
1919
],
2020
"deps": [],
21-
"version": "1.23.0"
21+
"version": "1.23.1"
2222
}

mip/minified.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818
]
1919
],
2020
"deps": [],
21-
"version": "1.23.0"
21+
"version": "1.23.1"
2222
}

mip/mpy_v5.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818
]
1919
],
2020
"deps": [],
21-
"version": "1.23.0"
21+
"version": "1.23.1"
2222
}

mip/mpy_v6.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818
]
1919
],
2020
"deps": [],
21-
"version": "1.23.0"
21+
"version": "1.23.1"
2222
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818
]
1919
],
2020
"deps": [],
21-
"version": "1.23.0"
21+
"version": "1.23.1"
2222
}

poetry.lock

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

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repo-path = "./repos"
88

99
[tool.poetry]
1010
name = "micropython-stubber"
11-
version = "1.23.0"
11+
version = "1.23.1"
1212
description = "Tooling to create and maintain stubs for MicroPython"
1313
authors = ["Jos Verlinde <[email protected]>"]
1414
license = "MIT"
@@ -49,7 +49,7 @@ python = ">=3.9,<4.0"
4949
python-minifier = { version = "^2.7.0", python = "<3.12" } # no support for 3.12 yet
5050
requests = "^2.32.3"
5151
mypy = "1.9.0"
52-
mpflash = "0.9.1"
52+
mpflash = "0.9.1.post2"
5353
mpremote = "^1.23.0"
5454
# others
5555
autoflake = ">=1.7,<3.0"

src/mpflash/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 = "mpflash"
3-
version = "0.9.1.Post1"
3+
version = "0.9.1.Post2"
44
description = "Flash and download tool for MicroPython firmwares"
55
authors = ["Jos Verlinde <[email protected]>"]
66
license = "MIT"

src/stubber/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""get the version"""
22

3-
__version__ = "1.23.0"
3+
__version__ = "1.23.1"

src/stubber/board/createstubs.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
except ImportError:
2525
from ucollections import OrderedDict # type: ignore
2626

27-
__version__ = "v1.23.0"
27+
__version__ = "v1.23.1"
2828
ENOENT = 2
2929
_MAX_CLASS_LEVEL = 2 # Max class nesting
3030
LIBS = ["lib", "/lib", "/sd/lib", "/flash/lib", "."]
@@ -488,7 +488,7 @@ def ensure_folder(path: str):
488488

489489
def _build(s):
490490
# extract build from sys.version or os.uname().version if available
491-
# sys.version: 'MicroPython v1.23.0-preview.6.g3d0b6276f'
491+
# sys.version: 'MicroPython v1.23.1-preview.6.g3d0b6276f'
492492
# sys.implementation.version: 'v1.13-103-gb137d064e'
493493
if not s:
494494
return ""
@@ -595,10 +595,10 @@ def _info(): # type:() -> dict[str, str]
595595
if (
596596
info["version"]
597597
and info["version"].endswith(".0")
598-
and info["version"] >= "1.10.0" # versions from 1.10.0 to 1.23.0 do not have a micro .0
598+
and info["version"] >= "1.10.0" # versions from 1.10.0 to 1.23.1 do not have a micro .0
599599
and info["version"] <= "1.19.9"
600600
):
601-
# versions from 1.10.0 to 1.23.0 do not have a micro .0
601+
# versions from 1.10.0 to 1.23.1 do not have a micro .0
602602
info["version"] = info["version"][:-2]
603603

604604
# spell-checker: disable

0 commit comments

Comments
 (0)