Skip to content

Commit 5f6371e

Browse files
committed
bump version
1 parent 8400a55 commit 5f6371e

File tree

13 files changed

+15
-15
lines changed

13 files changed

+15
-15
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.1"
21+
"version": "1.17.2"
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.1"
21+
"version": "1.17.2"
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.1"
21+
"version": "1.17.2"
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.1"
21+
"version": "1.17.2"
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.1"
21+
"version": "1.17.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.17.1"
11+
version = "1.17.2"
1212
description = "Tooling to create and maintain stubs for MicroPython"
1313
authors = ["Jos Verlinde <[email protected]>"]
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.17.1"
4+
__version__ = "1.17.2"

src/stubber/board/createstubs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
except ImportError:
2424
from ucollections import OrderedDict # type: ignore
2525

26-
__version__ = "v1.17.1"
26+
__version__ = "v1.17.2"
2727
ENOENT = 2
2828
_MAX_CLASS_LEVEL = 2 # Max class nesting
2929
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.1
21+
This variant was generated from createstubs.py by micropython-stubber v1.17.2
2222
"""
2323
# Copyright (c) 2019-2023 Jos Verlinde
2424

@@ -42,7 +42,7 @@
4242
except ImportError:
4343
from ucollections import OrderedDict # type: ignore
4444

45-
__version__ = "v1.17.1"
45+
__version__ = "v1.17.2"
4646
ENOENT = 2
4747
_MAX_CLASS_LEVEL = 2 # Max class nesting
4848
LIBS = ["lib", "/lib", "/sd/lib", "/flash/lib", "."]

src/stubber/board/createstubs_db_min.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
except O:pass
5252
try:from collections import OrderedDict as k
5353
except O:from ucollections import OrderedDict as k
54-
__version__='v1.17.1'
54+
__version__='v1.17.2'
5555
A3=2
5656
A4=2
5757
A5=['lib','/lib','/sd/lib','/flash/lib',J]

0 commit comments

Comments
 (0)