Skip to content

Commit 6fcc860

Browse files
committed
Bump version: 4.39.0 → 4.40.0
1 parent d2bc6d2 commit 6fcc860

File tree

4 files changed

+5
-9
lines changed

4 files changed

+5
-9
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 4.39.0
2+
current_version = 4.40.0
33
commit = True
44
tag = True
55
tag_name = v{new_version}

CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The semantic versioning only considers the public API as described in
1212
paths are considered internals and can change in minor and patch releases.
1313

1414

15-
v4.40.0 (2025-05-??)
15+
v4.40.0 (2025-05-16)
1616
--------------------
1717

1818
Added

README.rst

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,18 +48,14 @@ Minimal boilerplate but manually parsing:
4848
4949
from jsonargparse import auto_parser
5050
51+
parser = auto_parser(main_function)
52+
cfg = parser.parse_args()
5153
...
5254
53-
if __name__ == "__main__":
54-
parser = auto_parser(main_function)
55-
cfg = parser.parse_args()
56-
...
57-
5855
Powerful argparse-like low level parsers:
5956

6057
.. code-block:: python
6158
62-
from typing import Union, Literal
6359
from jsonargparse import ArgumentParser
6460
6561
parser = ArgumentParser()

jsonargparse/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,4 @@
7070
__all__ += _deprecated.__all__
7171

7272

73-
__version__ = "4.39.0"
73+
__version__ = "4.40.0"

0 commit comments

Comments
 (0)