pythonic-fp-gadgets 4.0.0__tar.gz → 4.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/CHANGELOG.rst +4 -2
  2. {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/PKG-INFO +2 -1
  3. {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/README.rst +1 -0
  4. {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/pyproject.toml +1 -1
  5. {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/.gitignore +0 -0
  6. {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/LICENSE +0 -0
  7. {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/src/pythonic_fp/gadgets/__init__.py +0 -0
  8. {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/src/pythonic_fp/gadgets/__init__.pyi +0 -0
  9. {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/src/pythonic_fp/gadgets/box.py +0 -0
  10. {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/src/pythonic_fp/gadgets/box.pyi +0 -0
  11. {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/src/pythonic_fp/gadgets/py.typed +0 -0
  12. {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/src/pythonic_fp/gadgets/sentinels/__init__.py +0 -0
  13. {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/src/pythonic_fp/gadgets/sentinels/__init__.pyi +0 -0
  14. {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/src/pythonic_fp/gadgets/sentinels/flavored.py +0 -0
  15. {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/src/pythonic_fp/gadgets/sentinels/flavored.pyi +0 -0
  16. {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/src/pythonic_fp/gadgets/sentinels/novalue.py +0 -0
  17. {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/src/pythonic_fp/gadgets/sentinels/novalue.pyi +0 -0
  18. {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/src/pythonic_fp/gadgets/wrap.py +0 -0
  19. {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/src/pythonic_fp/gadgets/wrap.pyi +0 -0
  20. {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/tests/sentinels/test_novalue.py +0 -0
  21. {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/tests/sentinels/test_sentinel_hidden_implemetation_detail.py +0 -0
  22. {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/tests/sentinels/test_sentinel_with_functions.py +0 -0
  23. {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/tests/test_box.py +0 -0
  24. {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/tests/test_first_common_ancestor.py +0 -0
  25. {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/tests/test_hwrap.py +0 -0
  26. {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/tests/test_iterate_over_arguments.py +0 -0
  27. {pythonic_fp_gadgets-4.0.0 → pythonic_fp_gadgets-4.0.1}/tests/test_wrap.py +0 -0
@@ -17,14 +17,16 @@ See `Semantic Versioning 2.0.0 <https://semver.org>`_.
17
17
  Releases and Important Milestones
18
18
  ---------------------------------
19
19
 
20
- PyPI v4.0.0 - TBD
21
- ~~~~~~~~~~~~~~~~~
20
+ PyPI v4.0.1 - 2025-12-02
21
+ ~~~~~~~~~~~~~~~~~~~~~~~~
22
22
 
23
23
  Move functions out of their own packages to __init__.py (2025-10-13).
24
24
 
25
25
  - latest_common_ancestor.lca -> first_common_ancestor
26
26
  - iterate_arguments.ita -> iterate_over_arguments
27
27
 
28
+ Unfortunately I forgot to push these changes to PyPI for a
29
+ month and a half.
28
30
 
29
31
  PyPI v3.0.1 - 2025-09-09
30
32
  ~~~~~~~~~~~~~~~~~~~~~~~~
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pythonic-fp-gadgets
3
- Version: 4.0.0
3
+ Version: 4.0.1
4
4
  Summary: **Module level function names.**
5
5
  Keywords: gadgets
6
6
  Author-email: "Geoffrey R. Scheller" <geoffrey@scheller.com>
@@ -33,6 +33,7 @@ Library of simple, but useful, classes and functions with no dependencies
33
33
  outside the Python Standard Library.
34
34
 
35
35
  - Gadgets
36
+
36
37
  - single item box
37
38
  - function returning iterator of its arguments
38
39
  - find the latest common ancestor of two classes
@@ -9,6 +9,7 @@ Library of simple, but useful, classes and functions with no dependencies
9
9
  outside the Python Standard Library.
10
10
 
11
11
  - Gadgets
12
+
12
13
  - single item box
13
14
  - function returning iterator of its arguments
14
15
  - find the latest common ancestor of two classes
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "pythonic-fp-gadgets"
3
- version = "4.0.0"
3
+ version = "4.0.1"
4
4
  readme = "README.rst"
5
5
  requires-python = ">=3.13"
6
6
  license = { file = "LICENSE" }