Skip to content

Commit 96d6085

Browse files
committed
bump version 1.25.1
Signed-off-by: Jos Verlinde <[email protected]>
1 parent 690ed1c commit 96d6085

16 files changed

+21
-1035
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.24.0"
21+
"version": "1.25.1"
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.24.0"
21+
"version": "1.25.1"
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.24.0"
21+
"version": "1.25.1"
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.24.0"
21+
"version": "1.25.1"
2222
}

poetry.lock

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

pyproject.toml

Lines changed: 3 additions & 3 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.25.1.rc5"
11+
version = "1.25.1"
1212
description = "Tooling to create and maintain stubs for MicroPython"
1313
authors = ["Jos Verlinde <[email protected]>"]
1414
license = "MIT"
@@ -72,7 +72,7 @@ tomli = { version = "^2.0.1", python = "<3.11" }
7272
tomli-w = "^1.0.0"
7373
typed-config = "^1.3.0"
7474
urllib3 = "^2.2.2"
75-
poetry = "^2.0.1"
75+
# poetry = "^2.1.1"
7676
pydeps = "3.0.1"
7777
pyright = ">=1.1.341"
7878
mypy = ">=1.10"
@@ -119,7 +119,7 @@ bincopy = "^20.0.0"
119119
requires = ["poetry-core>=1.0.0"]
120120
build-backend = "poetry.core.masonry.api"
121121

122-
# Init with : poetry self add poetry-bumpversion
122+
# Init with : uv tool install poetry --with poetry-bumpversion
123123

124124
[tool.poetry_bumpversion.file."src/stubber/__init__.py"]
125125
[tool.poetry_bumpversion.file."src/stubber/board/createstubs.py"]

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.25.0"
3+
__version__ = "1.25.1"

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.25.0"
27+
__version__ = "v1.25.1"
2828
ENOENT = 2 # on most ports
2929
ENOMESSAGE = 44 # on pyscript
3030
_MAX_CLASS_LEVEL = 2 # Max class nesting

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.24.4
21+
This variant was generated from createstubs.py by micropython-stubber v1.25.1
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.25.0"
46+
__version__ = "v1.25.1"
4747
ENOENT = 2 # on most ports
4848
ENOMESSAGE = 44 # on pyscript
4949
_MAX_CLASS_LEVEL = 2 # Max class nesting

src/stubber/board/createstubs_db_min.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
except P:pass
5353
try:from collections import OrderedDict as n
5454
except P:from ucollections import OrderedDict as n
55-
__version__='v1.25.0'
55+
__version__='v1.25.1'
5656
A4=2
5757
A5=44
5858
A6=2

0 commit comments

Comments
 (0)