pythonic-fp-fptools 5.1.0__tar.gz → 5.1.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_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/CHANGELOG.rst +2 -2
  2. {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/PKG-INFO +5 -5
  3. {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/pyproject.toml +5 -5
  4. {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/.gitignore +0 -0
  5. {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/LICENSE +0 -0
  6. {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/README.rst +0 -0
  7. {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/src/pythonic_fp/fptools/__init__.py +0 -0
  8. {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/src/pythonic_fp/fptools/either.py +0 -0
  9. {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/src/pythonic_fp/fptools/either.pyi +0 -0
  10. {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/src/pythonic_fp/fptools/function.py +0 -0
  11. {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/src/pythonic_fp/fptools/function.pyi +0 -0
  12. {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/src/pythonic_fp/fptools/lazy.py +0 -0
  13. {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/src/pythonic_fp/fptools/lazy.pyi +0 -0
  14. {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/src/pythonic_fp/fptools/maybe.py +0 -0
  15. {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/src/pythonic_fp/fptools/maybe.pyi +0 -0
  16. {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/src/pythonic_fp/fptools/py.typed +0 -0
  17. {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/src/pythonic_fp/fptools/state.py +0 -0
  18. {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/src/pythonic_fp/fptools/state.pyi +0 -0
  19. {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/tests/either/test_either.py +0 -0
  20. {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/tests/either/test_sequence_either.py +0 -0
  21. {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/tests/either/test_str_repr_either.py +0 -0
  22. {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/tests/function/test_function.py +0 -0
  23. {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/tests/lazy/test_lazy.py +0 -0
  24. {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/tests/maybe/maybe.py +0 -0
  25. {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/tests/maybe/test_sequence_maybe.py +0 -0
  26. {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/tests/maybe/test_str_repr_maybe.py +0 -0
  27. {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/tests/state/test_state.py +0 -0
@@ -17,8 +17,8 @@ See `Semantic Versioning 2.0.0 <https://semver.org>`_.
17
17
  Releases and Important Milestones
18
18
  ---------------------------------
19
19
 
20
- 5.1.0 - TBD
21
- ~~~~~~~~~~~
20
+ 5.1.0 - 2025-09-09
21
+ ~~~~~~~~~~~~~~~~~~
22
22
 
23
23
  Updated docstrings for new Sphinx docs structure. Probably just a PATCH release,
24
24
  made it a MINOR release due to introducing .pyi files.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pythonic-fp-fptools
3
- Version: 5.1.0
3
+ Version: 5.1.1
4
4
  Summary: Pythonic FP - Functional Programming Tools
5
5
  Keywords: either,fp,functional,functional programming,lazy,maybe,monad,non-strict
6
6
  Author-email: "Geoffrey R. Scheller" <geoffrey@scheller.com>
@@ -14,11 +14,11 @@ Classifier: Operating System :: OS Independent
14
14
  Classifier: Programming Language :: Python :: 3.13
15
15
  Classifier: Typing :: Typed
16
16
  License-File: LICENSE
17
- Requires-Dist: pythonic-fp-booleans>=1.1.2
18
- Requires-Dist: pythonic-fp-circulararray>=5.3.3
19
- Requires-Dist: pythonic-fp-sentinels>=2.1.1
17
+ Requires-Dist: pythonic-fp-booleans>=1.1.1
18
+ Requires-Dist: pythonic-fp-circulararray>=5.3.2
19
+ Requires-Dist: pythonic-fp-sentinels>=2.1.0
20
20
  Requires-Dist: pytest>=8.4.1 ; extra == "test"
21
- Requires-Dist: pythonic-fp-containers>=3.0.1 ; extra == "test"
21
+ Requires-Dist: pythonic-fp-containers>=3.0.0 ; extra == "test"
22
22
  Project-URL: Changelog, https://github.com/grscheller/pythonic-fp-fptools/blob/main/CHANGELOG.rst
23
23
  Project-URL: Documentation, https://grscheller.github.io/pythonic-fp/fptools/development/build/html/releases.html
24
24
  Project-URL: Homepage, https://github.com/grscheller/pythonic-fp/blob/main/README.md
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "pythonic-fp-fptools"
3
- version = "5.1.0"
3
+ version = "5.1.1"
4
4
  readme = "README.rst"
5
5
  requires-python = ">=3.12"
6
6
  license = { file = "LICENSE" }
@@ -25,9 +25,9 @@ classifiers = [
25
25
  "Typing :: Typed",
26
26
  ]
27
27
  dependencies = [
28
- "pythonic-fp-booleans>=1.1.2",
29
- "pythonic-fp-circulararray>=5.3.3",
30
- "pythonic-fp-sentinels>=2.1.1",
28
+ "pythonic-fp-booleans>=1.1.1",
29
+ "pythonic-fp-circulararray>=5.3.2",
30
+ "pythonic-fp-sentinels>=2.1.0",
31
31
  ]
32
32
  dynamic = ["description"]
33
33
 
@@ -40,7 +40,7 @@ Source = "https://github.com/grscheller/pythonic-fp-fptools"
40
40
  [project.optional-dependencies]
41
41
  test = [
42
42
  "pytest>=8.4.1",
43
- "pythonic-fp-containers>=3.0.1",
43
+ "pythonic-fp-containers>=3.0.0",
44
44
  ]
45
45
 
46
46
  [build-system]