Skip to content

Commit 989fd3b

Browse files
committed
bump stubber to version v1.20.2
1 parent 51d89e0 commit 989fd3b

File tree

13 files changed

+21
-21
lines changed

13 files changed

+21
-21
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.20.1"
21+
"version": "1.20.2"
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.20.1"
21+
"version": "1.20.2"
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.20.1"
21+
"version": "1.20.2"
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.20.1"
21+
"version": "1.20.2"
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.20.1"
21+
"version": "1.20.2"
2222
}

pyproject.toml

Lines changed: 1 addition & 1 deletion
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.20.1"
11+
version = "1.20.2"
1212
description = "Tooling to create and maintain stubs for MicroPython"
1313
authors = ["Jos Verlinde <[email protected]>"]
1414
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.20.1"
3+
__version__ = "1.20.2"

src/stubber/board/createstubs.py

Lines changed: 3 additions & 3 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.20.1"
27+
__version__ = "v1.20.2"
2828
ENOENT = 2
2929
_MAX_CLASS_LEVEL = 2 # Max class nesting
3030
LIBS = ["lib", "/lib", "/sd/lib", "/flash/lib", "."]
@@ -596,10 +596,10 @@ def _info(): # type:() -> dict[str, str]
596596
if (
597597
info["version"]
598598
and info["version"].endswith(".0")
599-
and info["version"] >= "1.10.0" # versions from 1.10.0 to 1.20.1 do not have a micro .0
599+
and info["version"] >= "1.10.0" # versions from 1.10.0 to 1.20.2 do not have a micro .0
600600
and info["version"] <= "1.19.9"
601601
):
602-
# versions from 1.10.0 to 1.20.1 do not have a micro .0
602+
# versions from 1.10.0 to 1.20.2 do not have a micro .0
603603
info["version"] = info["version"][:-2]
604604

605605
# spell-checker: disable

src/stubber/board/createstubs_db.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
- cross compilation, using mpy-cross, to avoid the compilation step on the micropython device
1919
2020
21-
This variant was generated from createstubs.py by micropython-stubber v1.20.1
21+
This variant was generated from createstubs.py by micropython-stubber v1.20.2
2222
"""
2323

2424
# Copyright (c) 2019-2024 Jos Verlinde
@@ -43,7 +43,7 @@
4343
except ImportError:
4444
from ucollections import OrderedDict # type: ignore
4545

46-
__version__ = "v1.20.1"
46+
__version__ = "v1.20.2"
4747
ENOENT = 2
4848
_MAX_CLASS_LEVEL = 2 # Max class nesting
4949
LIBS = ["lib", "/lib", "/sd/lib", "/flash/lib", "."]
@@ -607,10 +607,10 @@ def _info(): # type:() -> dict[str, str]
607607
if (
608608
info["version"]
609609
and info["version"].endswith(".0")
610-
and info["version"] >= "1.10.0" # versions from 1.10.0 to 1.20.1 do not have a micro .0
610+
and info["version"] >= "1.10.0" # versions from 1.10.0 to 1.20.2 do not have a micro .0
611611
and info["version"] <= "1.19.9"
612612
):
613-
# versions from 1.10.0 to 1.20.1 do not have a micro .0
613+
# versions from 1.10.0 to 1.20.2 do not have a micro .0
614614
info["version"] = info["version"][:-2]
615615

616616
# spell-checker: disable

src/stubber/board/createstubs_db_min.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
except O:pass
5252
try:from collections import OrderedDict as l
5353
except O:from ucollections import OrderedDict as l
54-
__version__='v1.20.1'
54+
__version__='v1.20.2'
5555
A3=2
5656
A4=2
5757
A5=['lib','/lib','/sd/lib','/flash/lib',J]

0 commit comments

Comments
 (0)