Skip to content

Commit 3d0d349

Browse files
committed
use version bumper
Signed-off-by: Jos Verlinde <jos_verlinde@hotmail.com>
1 parent c31bf6f commit 3d0d349

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+67
-68
lines changed

.vscode/launch.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@
3333
"args": [
3434
"-v",
3535
"-v",
36-
"publish",
37-
// "--port",
38-
// "esp32",
36+
"merge",
37+
"--version",
38+
"v1.20.0",
39+
"--port",
40+
"esp32",
3941
// "--board",
40-
// "um_tinypico",
41-
"--pypi",
42-
"--dry-run",
42+
// "PICO_W",
4343
// "--build",
4444
// "switch",
4545
// "v1.19.1"

mip/full.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@
2626
]
2727
],
2828
"deps": [],
29-
"version": "1.11.2"
29+
"version": "1.13.7"
3030
}

mip/minified.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@
2222
]
2323
],
2424
"deps": [],
25-
"version": "1.11.2"
25+
"version": "1.13.7"
2626
}

mip/mpy_v5.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
"urls": [
33
[
44
"createstubs_mpy.mpy",
5-
"github:josverl/micropython-stubber/mip/v5/createstubs_mpy.mpy"
5+
"github:josverl/micropython-stubber/mip/v5/createstubs.mpy"
66
],
77
[
88
"createstubs_db_mpy.mpy",
9-
"github:Josverl/micropython-stubber/mip/v5/createstubs_db_mpy.mpy"
9+
"github:Josverl/micropython-stubber/mip/v5/createstubs_db.mpy"
1010
],
1111
[
1212
"createstubs_mem_mpy.mpy",
13-
"github:Josverl/micropython-stubber/mip/v5/createstubs_mem_mpy.mpy"
13+
"github:Josverl/micropython-stubber/mip/v5/createstubs_mem.mpy"
1414
],
1515
[
1616
"modulelist.txt",
@@ -22,5 +22,5 @@
2222
]
2323
],
2424
"deps": [],
25-
"version": "1.11.2"
25+
"version": "1.13.7"
2626
}

mip/mpy_v6.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
"urls": [
33
[
44
"createstubs_mpy.mpy",
5-
"github:josverl/micropython-stubber/mip/v6/createstubs_mpy.mpy"
5+
"github:josverl/micropython-stubber/mip/v6/createstubs.mpy"
66
],
77
[
88
"createstubs_db_mpy.mpy",
9-
"github:Josverl/micropython-stubber/mip/v6/createstubs_db_mpy.mpy"
9+
"github:Josverl/micropython-stubber/mip/v6/createstubs_db.mpy"
1010
],
1111
[
1212
"createstubs_mem_mpy.mpy",
13-
"github:Josverl/micropython-stubber/mip/v6/createstubs_mem_mpy.mpy"
13+
"github:Josverl/micropython-stubber/mip/v6/createstubs_mem.mpy"
1414
],
1515
[
1616
"modulelist.txt",
@@ -22,5 +22,5 @@
2222
]
2323
],
2424
"deps": [],
25-
"version": "1.11.2"
25+
"version": "1.13.7"
2626
}

mip/v5/createstubs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
except ImportError:
2121
from ucollections import OrderedDict # type: ignore
2222

23-
__version__ = "v1.13.4"
23+
__version__ = "v1.13.7"
2424
ENOENT = 2
2525
_MAX_CLASS_LEVEL = 2 # Max class nesting
2626
LIBS = [".", "/lib", "/sd/lib", "/flash/lib", "lib"]

mip/v5/createstubs_db.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
except ImportError:
4040
from ucollections import OrderedDict # type: ignore
4141

42-
__version__ = "v1.13.4"
42+
__version__ = "v1.13.7"
4343
ENOENT = 2
4444
_MAX_CLASS_LEVEL = 2 # Max class nesting
4545
LIBS = [".", "/lib", "/sd/lib", "/flash/lib", "lib"]

mip/v5/createstubs_db_min.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
except Q:pass
4242
try:from collections import OrderedDict as c
4343
except Q:from ucollections import OrderedDict as c
44-
__version__='v1.13.4'
44+
__version__='v1.13.7'
4545
v=2
4646
w=2
4747
d=[M,'/lib','/sd/lib','/flash/lib','lib']

mip/v5/createstubs_db_mpy.mpy

0 Bytes
Binary file not shown.

mip/v5/createstubs_lvgl.py

Lines changed: 1 addition & 1 deletion
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.13.4"
27+
__version__ = "v1.13.7"
2828
ENOENT = 2
2929
_MAX_CLASS_LEVEL = 2 # Max class nesting
3030
LIBS = [".", "/lib", "/sd/lib", "/flash/lib", "lib"]

0 commit comments

Comments
 (0)