From 6b77dd4cacf93e352d66971acf01eec74b1bae1a Mon Sep 17 00:00:00 2001 From: Jos Verlinde Date: Mon, 5 Feb 2024 23:21:43 +0100 Subject: [PATCH] bump version Signed-off-by: Jos Verlinde --- mip/full.json | 2 +- mip/minified.json | 2 +- mip/mpy_v5.json | 2 +- mip/mpy_v6.json | 2 +- package.json | 2 +- pyproject.toml | 2 +- repos/micropython | 2 +- repos/micropython-lib | 2 +- repos/micropython-stubs | 2 +- src/stubber/__init__.py | 2 +- src/stubber/board/createstubs.py | 2 +- src/stubber/board/createstubs_db.py | 4 ++-- src/stubber/board/createstubs_db_min.py | 2 +- src/stubber/board/createstubs_mem.py | 4 ++-- src/stubber/board/createstubs_mem_min.py | 2 +- src/stubber/board/createstubs_min.py | 2 +- 16 files changed, 18 insertions(+), 18 deletions(-) diff --git a/mip/full.json b/mip/full.json index b7501ed2..153a27db 100644 --- a/mip/full.json +++ b/mip/full.json @@ -26,5 +26,5 @@ ] ], "deps": [], - "version": "1.17.0" + "version": "1.17.1" } diff --git a/mip/minified.json b/mip/minified.json index 2adbb29f..794cae6c 100644 --- a/mip/minified.json +++ b/mip/minified.json @@ -22,5 +22,5 @@ ] ], "deps": [], - "version": "1.17.0" + "version": "1.17.1" } diff --git a/mip/mpy_v5.json b/mip/mpy_v5.json index a38d0528..2cd877be 100644 --- a/mip/mpy_v5.json +++ b/mip/mpy_v5.json @@ -22,5 +22,5 @@ ] ], "deps": [], - "version": "1.17.0" + "version": "1.17.1" } diff --git a/mip/mpy_v6.json b/mip/mpy_v6.json index f174662c..2a365b71 100644 --- a/mip/mpy_v6.json +++ b/mip/mpy_v6.json @@ -22,5 +22,5 @@ ] ], "deps": [], - "version": "1.17.0" + "version": "1.17.1" } diff --git a/package.json b/package.json index 0559c310..e7cb3519 100644 --- a/package.json +++ b/package.json @@ -18,5 +18,5 @@ ] ], "deps": [], - "version": "1.17.0" + "version": "1.17.1" } diff --git a/pyproject.toml b/pyproject.toml index 496ee58c..909ad2a5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ repo-path = "./repos" [tool.poetry] name = "micropython-stubber" -version = "1.17.0" +version = "1.17.1" description = "Tooling to create and maintain stubs for MicroPython" authors = ["Jos Verlinde "] license = "MIT" diff --git a/repos/micropython b/repos/micropython index 294baf52..0285cb2b 160000 --- a/repos/micropython +++ b/repos/micropython @@ -1 +1 @@ -Subproject commit 294baf52b346e400e2255c6c1e82af5b978b18f7 +Subproject commit 0285cb2bf4a317490364b9249f25ca0eaa6af3ef diff --git a/repos/micropython-lib b/repos/micropython-lib index c1136117..7cdf7088 160000 --- a/repos/micropython-lib +++ b/repos/micropython-lib @@ -1 +1 @@ -Subproject commit c113611765278b2fc8dcf8b2f2c3513b35a69b39 +Subproject commit 7cdf70881519c73667efbc4a61a04d9c1a49babb diff --git a/repos/micropython-stubs b/repos/micropython-stubs index 1356a6f8..a329b238 160000 --- a/repos/micropython-stubs +++ b/repos/micropython-stubs @@ -1 +1 @@ -Subproject commit 1356a6f8369058145920d73f705e2c612ded0662 +Subproject commit a329b2387f65b4feea0fe9f9a702237370b3cdaa diff --git a/src/stubber/__init__.py b/src/stubber/__init__.py index 7bbc1a30..60d96a31 100644 --- a/src/stubber/__init__.py +++ b/src/stubber/__init__.py @@ -1,4 +1,4 @@ """get the version""" -__version__ = "1.17.0" +__version__ = "1.17.1" diff --git a/src/stubber/board/createstubs.py b/src/stubber/board/createstubs.py index 2ab22f8e..6ce3de0d 100644 --- a/src/stubber/board/createstubs.py +++ b/src/stubber/board/createstubs.py @@ -23,7 +23,7 @@ except ImportError: from ucollections import OrderedDict # type: ignore -__version__ = "v1.17.0" +__version__ = "v1.17.1" ENOENT = 2 _MAX_CLASS_LEVEL = 2 # Max class nesting LIBS = ["lib", "/lib", "/sd/lib", "/flash/lib", "."] diff --git a/src/stubber/board/createstubs_db.py b/src/stubber/board/createstubs_db.py index 38f14d89..e6abbd60 100644 --- a/src/stubber/board/createstubs_db.py +++ b/src/stubber/board/createstubs_db.py @@ -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.17.0 +This variant was generated from createstubs.py by micropython-stubber v1.17.1 """ # Copyright (c) 2019-2023 Jos Verlinde @@ -42,7 +42,7 @@ except ImportError: from ucollections import OrderedDict # type: ignore -__version__ = "v1.17.0" +__version__ = "v1.17.1" ENOENT = 2 _MAX_CLASS_LEVEL = 2 # Max class nesting LIBS = ["lib", "/lib", "/sd/lib", "/flash/lib", "."] diff --git a/src/stubber/board/createstubs_db_min.py b/src/stubber/board/createstubs_db_min.py index f3bc2d29..23416079 100644 --- a/src/stubber/board/createstubs_db_min.py +++ b/src/stubber/board/createstubs_db_min.py @@ -51,7 +51,7 @@ except O:pass try:from collections import OrderedDict as k except O:from ucollections import OrderedDict as k -__version__='v1.17.0' +__version__='v1.17.1' A3=2 A4=2 A5=['lib','/lib','/sd/lib','/flash/lib',J] diff --git a/src/stubber/board/createstubs_mem.py b/src/stubber/board/createstubs_mem.py index 9a434929..e90f75c9 100644 --- a/src/stubber/board/createstubs_mem.py +++ b/src/stubber/board/createstubs_mem.py @@ -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.17.0 +This variant was generated from createstubs.py by micropython-stubber v1.17.1 """ # Copyright (c) 2019-2023 Jos Verlinde @@ -33,7 +33,7 @@ except ImportError: from ucollections import OrderedDict # type: ignore -__version__ = "v1.17.0" +__version__ = "v1.17.1" ENOENT = 2 _MAX_CLASS_LEVEL = 2 # Max class nesting LIBS = ["lib", "/lib", "/sd/lib", "/flash/lib", "."] diff --git a/src/stubber/board/createstubs_mem_min.py b/src/stubber/board/createstubs_mem_min.py index 9c2cfd27..aa487c4d 100644 --- a/src/stubber/board/createstubs_mem_min.py +++ b/src/stubber/board/createstubs_mem_min.py @@ -47,7 +47,7 @@ except N:pass try:from collections import OrderedDict as f except N:from ucollections import OrderedDict as f -__version__='v1.17.0' +__version__='v1.17.1' y=2 z=2 A0=['lib','/lib','/sd/lib','/flash/lib',J] diff --git a/src/stubber/board/createstubs_min.py b/src/stubber/board/createstubs_min.py index 63ab0568..e0071896 100644 --- a/src/stubber/board/createstubs_min.py +++ b/src/stubber/board/createstubs_min.py @@ -50,7 +50,7 @@ except N:pass try:from collections import OrderedDict as g except N:from ucollections import OrderedDict as g -__version__='v1.17.0' +__version__='v1.17.1' A0=2 A1=2 A5=['lib','/lib','/sd/lib','/flash/lib',J]