Skip to content

Commit 3304c33

Browse files
committed
stubber: bump version
1 parent 5f8ad7a commit 3304c33

14 files changed

+20
-20
lines changed

mip/full.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.17.6"
21+
"version": "1.18.0"
2222
}

mip/minified.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.17.6"
21+
"version": "1.18.0"
2222
}

mip/mpy_v5.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.17.6"
21+
"version": "1.18.0"
2222
}

mip/mpy_v6.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.17.6"
21+
"version": "1.18.0"
2222
}

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.17.6"
21+
"version": "1.18.0"
2222
}

poetry.lock

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

pyproject.toml

Lines changed: 2 additions & 2 deletions
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.17.6"
11+
version = "1.18.0"
1212
description = "Tooling to create and maintain stubs for MicroPython"
1313
authors = ["Jos Verlinde <[email protected]>"]
1414
license = "MIT"
@@ -46,7 +46,7 @@ stubber = "stubber.stubber:stubber_cli"
4646

4747
[tool.poetry.dependencies]
4848
python = ">=3.9,<4.0"
49-
mpflash = ">=0.5.0"
49+
mpflash = ">=0.6.0"
5050
mpremote = "^1.22.0"
5151
# others
5252
autoflake = ">=1.7,<3.0"

src/stubber/__init__.py

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

3-
__version__ = "1.17.6"
3+
__version__ = "1.18.0"

src/stubber/board/createstubs.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.17.6"
27+
__version__ = "v1.18.0"
2828
ENOENT = 2
2929
_MAX_CLASS_LEVEL = 2 # Max class nesting
3030
LIBS = ["lib", "/lib", "/sd/lib", "/flash/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.17.6
21+
This variant was generated from createstubs.py by micropython-stubber v1.18.0
2222
"""
2323

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

46-
__version__ = "v1.17.6"
46+
__version__ = "v1.18.0"
4747
ENOENT = 2
4848
_MAX_CLASS_LEVEL = 2 # Max class nesting
4949
LIBS = ["lib", "/lib", "/sd/lib", "/flash/lib", "."]

0 commit comments

Comments
 (0)