Skip to content

Commit 78d2337

Browse files
committed
bump version
Signed-off-by: Jos Verlinde <jos_verlinde@hotmail.com>
1 parent 657bff2 commit 78d2337

14 files changed

+952
-717
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.13.8"
29+
"version": "1.14.0"
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.13.8"
25+
"version": "1.14.0"
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.13.8"
25+
"version": "1.14.0"
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.13.8"
25+
"version": "1.14.0"
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.13.8"
21+
"version": "1.14.0"
2222
}

poetry.lock

Lines changed: 937 additions & 702 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.13.8"
11+
version = "1.14.0"
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.13.8"
4+
__version__ = "1.14.0"

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.13.8"
23+
__version__ = "v1.14.0"
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.13.8
21+
This variant was generated from createstubs.py by micropython-stubber v1.14.0
2222
"""
2323
# Copyright (c) 2019-2023 Jos Verlinde
2424
# pylint: disable= invalid-name, missing-function-docstring, import-outside-toplevel, logging-not-lazy
@@ -39,7 +39,7 @@
3939
except ImportError:
4040
from ucollections import OrderedDict # type: ignore
4141

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

0 commit comments

Comments
 (0)