Skip to content

Commit df72a3e

Browse files
committed
bump version and publish
Signed-off-by: Jos Verlinde <jos_verlinde@hotmail.com>
1 parent 84097bd commit df72a3e

19 files changed

+18
-18
lines changed

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.16.1"
29+
"version": "1.16.2"
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.16.1"
25+
"version": "1.16.2"
2626
}

mip/mpy_v5.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.16.1"
25+
"version": "1.16.2"
2626
}

mip/mpy_v6.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.16.1"
25+
"version": "1.16.2"
2626
}

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.16.1"
21+
"version": "1.16.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.16.1"
11+
version = "1.16.2"
1212
description = "Tooling to create and maintain stubs for MicroPython"
1313
authors = ["Jos Verlinde <jos_verlinde@hotmail.com>"]
1414
license = "MIT"

src/stubber/__init__.py

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

33

4-
__version__ = "1.16.1"
4+
__version__ = "1.16.2"

src/stubber/board/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.16.1"
23+
__version__ = "v1.16.2"
2424
ENOENT = 2
2525
_MAX_CLASS_LEVEL = 2 # Max class nesting
2626
LIBS = [".", "/lib", "/sd/lib", "/flash/lib", "lib"]

src/stubber/board/createstubs_db.py

Lines changed: 2 additions & 2 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.16.1
21+
This variant was generated from createstubs.py by micropython-stubber v1.16.2
2222
"""
2323
# Copyright (c) 2019-2023 Jos Verlinde
2424

@@ -39,7 +39,7 @@
3939
except ImportError:
4040
from ucollections import OrderedDict # type: ignore
4141

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

src/stubber/board/createstubs_db_min.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
except P:pass
4343
try:from collections import OrderedDict as d
4444
except P:from ucollections import OrderedDict as d
45-
__version__='v1.16.1'
45+
__version__='v1.16.2'
4646
w=2
4747
x=2
4848
e=[J,'/lib','/sd/lib','/flash/lib','lib']

0 commit comments

Comments
 (0)