diff --git a/CHANGELOG.md b/CHANGELOG.md index 638444c6..6d62f368 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning]. ## [Unreleased] -## [0.3.2] - 2025-01-20 +## [0.3.2] - 2025-01-28 ### Changed in 0.3.2 @@ -16,12 +16,17 @@ and this project adheres to [Semantic Versioning]. - Modify examples to import from senzing and senzing_core - Modified workflows and make files to use pytest instead of unittest for examples - Cleaned up tne examples +- With info methods return "" instead of "{}" for simpler checking ### Added in 0.3.2 - Added custom documentation processing to Sphinx - Added documentation-requirements.txt +### Fixed in 0.3.2 + +- Fixed error from building Sphinx doc for html_static_path = ["_static"] + ## [0.3.1] - 2024-12-04 ### Added in 0.3.1 diff --git a/setup.cfg b/setup.cfg index 4eaa7f54..309fcb42 100644 --- a/setup.cfg +++ b/setup.cfg @@ -21,7 +21,7 @@ package_dir = packages = find: python_requires = >=3.9 install_requires = - senzing >= 0.2.1,<1.0.0 + senzing >= 0.2.2,<1.0.0 [options.packages.find] where = src diff --git a/src/senzing_core/szabstractfactory.py b/src/senzing_core/szabstractfactory.py index ddd92011..4bc0c83d 100644 --- a/src/senzing_core/szabstractfactory.py +++ b/src/senzing_core/szabstractfactory.py @@ -29,7 +29,7 @@ __all__ = ["SzAbstractFactoryCore", "SzAbstractFactoryParametersCore"] __version__ = "0.0.1" # See https://www.python.org/dev/peps/pep-0396/ __date__ = "2024-10-21" -__updated__ = "2025-01-17" +__updated__ = "2025-01-28" # ----------------------------------------------------------------------------- diff --git a/src/senzing_core/szconfig.py b/src/senzing_core/szconfig.py index 744b9dd4..3d932355 100644 --- a/src/senzing_core/szconfig.py +++ b/src/senzing_core/szconfig.py @@ -40,7 +40,7 @@ __all__ = ["SzConfigCore"] __version__ = "0.0.1" # See https://www.python.org/dev/peps/pep-0396/ __date__ = "2023-10-30" -__updated__ = "2025-01-17" +__updated__ = "2025-01-28" # ----------------------------------------------------------------------------- diff --git a/src/senzing_core/szconfigmanager.py b/src/senzing_core/szconfigmanager.py index 063f7c92..b01f7f2f 100644 --- a/src/senzing_core/szconfigmanager.py +++ b/src/senzing_core/szconfigmanager.py @@ -37,7 +37,7 @@ __all__ = ["SzConfigManagerCore"] __version__ = "0.0.1" # See https://www.python.org/dev/peps/pep-0396/ __date__ = "2023-10-30" -__updated__ = "2025-01-17" +__updated__ = "2025-01-28" # ----------------------------------------------------------------------------- diff --git a/src/senzing_core/szdiagnostic.py b/src/senzing_core/szdiagnostic.py index 2496f3c6..df8e9743 100644 --- a/src/senzing_core/szdiagnostic.py +++ b/src/senzing_core/szdiagnostic.py @@ -38,7 +38,7 @@ __all__ = ["SzDiagnosticCore"] __version__ = "0.0.1" # See https://www.python.org/dev/peps/pep-0396/ __date__ = "2023-10-30" -__updated__ = "2025-01-17" +__updated__ = "2025-01-28" # ----------------------------------------------------------------------------- diff --git a/src/senzing_core/szengine.py b/src/senzing_core/szengine.py index 239e90c5..82bea2d9 100644 --- a/src/senzing_core/szengine.py +++ b/src/senzing_core/szengine.py @@ -53,7 +53,7 @@ __all__ = ["SzEngineCore"] __version__ = "0.0.1" # See https://www.python.org/dev/peps/pep-0396/ __date__ = "2023-10-30" -__updated__ = "2025-01-17" +__updated__ = "2025-01-28" # ----------------------------------------------------------------------------- diff --git a/src/senzing_core/szproduct.py b/src/senzing_core/szproduct.py index e5824e1d..4212d2e4 100644 --- a/src/senzing_core/szproduct.py +++ b/src/senzing_core/szproduct.py @@ -36,7 +36,7 @@ __all__ = ["SzProductCore"] __version__ = "0.0.1" # See https://www.python.org/dev/peps/pep-0396/ __date__ = "2023-10-30" -__updated__ = "2025-01-17" +__updated__ = "2025-01-28" # -----------------------------------------------------------------------------