Skip to content

Commit

Permalink
stubber: Publish v1.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Josverl committed Jun 25, 2024
1 parent b70ad42 commit 300f1a6
Show file tree
Hide file tree
Showing 16 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion mip/full.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
]
],
"deps": [],
"version": "1.20.6"
"version": "1.23.0"
}
2 changes: 1 addition & 1 deletion mip/minified.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
]
],
"deps": [],
"version": "1.20.6"
"version": "1.23.0"
}
2 changes: 1 addition & 1 deletion mip/mpy_v5.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
]
],
"deps": [],
"version": "1.20.6"
"version": "1.23.0"
}
2 changes: 1 addition & 1 deletion mip/mpy_v6.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
]
],
"deps": [],
"version": "1.20.6"
"version": "1.23.0"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
]
],
"deps": [],
"version": "1.20.6"
"version": "1.23.0"
}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repo-path = "./repos"

[tool.poetry]
name = "micropython-stubber"
version = "1.20.6"
version = "1.23.0"
description = "Tooling to create and maintain stubs for MicroPython"
authors = ["Jos Verlinde <jos_verlinde@hotmail.com>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/stubber/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""get the version"""

__version__ = "1.20.6"
__version__ = "1.23.0"
6 changes: 3 additions & 3 deletions src/stubber/board/createstubs.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
except ImportError:
from ucollections import OrderedDict # type: ignore

__version__ = "v1.20.6"
__version__ = "v1.23.0"
ENOENT = 2
_MAX_CLASS_LEVEL = 2 # Max class nesting
LIBS = ["lib", "/lib", "/sd/lib", "/flash/lib", "."]
Expand Down Expand Up @@ -595,10 +595,10 @@ def _info(): # type:() -> dict[str, str]
if (
info["version"]
and info["version"].endswith(".0")
and info["version"] >= "1.10.0" # versions from 1.10.0 to 1.20.6 do not have a micro .0
and info["version"] >= "1.10.0" # versions from 1.10.0 to 1.23.0 do not have a micro .0
and info["version"] <= "1.19.9"
):
# versions from 1.10.0 to 1.20.6 do not have a micro .0
# versions from 1.10.0 to 1.23.0 do not have a micro .0
info["version"] = info["version"][:-2]

# spell-checker: disable
Expand Down
8 changes: 4 additions & 4 deletions src/stubber/board/createstubs_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
- cross compilation, using mpy-cross, to avoid the compilation step on the micropython device
This variant was generated from createstubs.py by micropython-stubber v1.20.6
This variant was generated from createstubs.py by micropython-stubber v1.23.0
"""

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

__version__ = "v1.20.6"
__version__ = "v1.23.0"
ENOENT = 2
_MAX_CLASS_LEVEL = 2 # Max class nesting
LIBS = ["lib", "/lib", "/sd/lib", "/flash/lib", "."]
Expand Down Expand Up @@ -606,10 +606,10 @@ def _info(): # type:() -> dict[str, str]
if (
info["version"]
and info["version"].endswith(".0")
and info["version"] >= "1.10.0" # versions from 1.10.0 to 1.20.6 do not have a micro .0
and info["version"] >= "1.10.0" # versions from 1.10.0 to 1.23.0 do not have a micro .0
and info["version"] <= "1.19.9"
):
# versions from 1.10.0 to 1.20.6 do not have a micro .0
# versions from 1.10.0 to 1.23.0 do not have a micro .0
info["version"] = info["version"][:-2]

# spell-checker: disable
Expand Down
2 changes: 1 addition & 1 deletion src/stubber/board/createstubs_db_min.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
except O:pass
try:from collections import OrderedDict as l
except O:from ucollections import OrderedDict as l
__version__='v1.20.6'
__version__='v1.23.0'
A3=2
A4=2
A5=['lib','/lib','/sd/lib','/flash/lib',J]
Expand Down
Binary file modified src/stubber/board/createstubs_db_mpy.mpy
Binary file not shown.
8 changes: 4 additions & 4 deletions src/stubber/board/createstubs_mem.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
- cross compilation, using mpy-cross,
to avoid the compilation step on the micropython device
This variant was generated from createstubs.py by micropython-stubber v1.20.6
This variant was generated from createstubs.py by micropython-stubber v1.23.0
"""

# Copyright (c) 2019-2024 Jos Verlinde
Expand All @@ -34,7 +34,7 @@
except ImportError:
from ucollections import OrderedDict # type: ignore

__version__ = "v1.20.6"
__version__ = "v1.23.0"
ENOENT = 2
_MAX_CLASS_LEVEL = 2 # Max class nesting
LIBS = ["lib", "/lib", "/sd/lib", "/flash/lib", "."]
Expand Down Expand Up @@ -597,10 +597,10 @@ def _info(): # type:() -> dict[str, str]
if (
info["version"]
and info["version"].endswith(".0")
and info["version"] >= "1.10.0" # versions from 1.10.0 to 1.20.6 do not have a micro .0
and info["version"] >= "1.10.0" # versions from 1.10.0 to 1.23.0 do not have a micro .0
and info["version"] <= "1.19.9"
):
# versions from 1.10.0 to 1.20.6 do not have a micro .0
# versions from 1.10.0 to 1.23.0 do not have a micro .0
info["version"] = info["version"][:-2]

# spell-checker: disable
Expand Down
2 changes: 1 addition & 1 deletion src/stubber/board/createstubs_mem_min.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
except N:pass
try:from collections import OrderedDict as g
except N:from ucollections import OrderedDict as g
__version__='v1.20.6'
__version__='v1.23.0'
y=2
z=2
A0=['lib','/lib','/sd/lib','/flash/lib',J]
Expand Down
Binary file modified src/stubber/board/createstubs_mem_mpy.mpy
Binary file not shown.
2 changes: 1 addition & 1 deletion src/stubber/board/createstubs_min.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
except N:pass
try:from collections import OrderedDict as h
except N:from ucollections import OrderedDict as h
__version__='v1.20.6'
__version__='v1.23.0'
A0=2
A1=2
A5=['lib','/lib','/sd/lib','/flash/lib',J]
Expand Down
Binary file modified src/stubber/board/createstubs_mpy.mpy
Binary file not shown.

0 comments on commit 300f1a6

Please sign in to comment.