lifecyclelogging 2.1.0__tar.gz → 2.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. {lifecyclelogging-2.1.0 → lifecyclelogging-2.1.1}/CHANGELOG.md +7 -0
  2. {lifecyclelogging-2.1.0 → lifecyclelogging-2.1.1}/PKG-INFO +7 -10
  3. {lifecyclelogging-2.1.0 → lifecyclelogging-2.1.1}/README.md +1 -1
  4. {lifecyclelogging-2.1.0 → lifecyclelogging-2.1.1}/pyproject.toml +7 -11
  5. {lifecyclelogging-2.1.0 → lifecyclelogging-2.1.1}/src/lifecyclelogging/__init__.py +1 -1
  6. {lifecyclelogging-2.1.0 → lifecyclelogging-2.1.1}/.gitignore +0 -0
  7. {lifecyclelogging-2.1.0 → lifecyclelogging-2.1.1}/examples/README.md +0 -0
  8. {lifecyclelogging-2.1.0 → lifecyclelogging-2.1.1}/examples/basic_logging.py +0 -0
  9. {lifecyclelogging-2.1.0 → lifecyclelogging-2.1.1}/examples/exit_run_formatting.py +0 -0
  10. {lifecyclelogging-2.1.0 → lifecyclelogging-2.1.1}/examples/markers_and_storage.py +0 -0
  11. {lifecyclelogging-2.1.0 → lifecyclelogging-2.1.1}/examples/verbosity_control.py +0 -0
  12. {lifecyclelogging-2.1.0 → lifecyclelogging-2.1.1}/project.json +0 -0
  13. {lifecyclelogging-2.1.0 → lifecyclelogging-2.1.1}/src/lifecyclelogging/const.py +0 -0
  14. {lifecyclelogging-2.1.0 → lifecyclelogging-2.1.1}/src/lifecyclelogging/handlers.py +0 -0
  15. {lifecyclelogging-2.1.0 → lifecyclelogging-2.1.1}/src/lifecyclelogging/log_types.py +0 -0
  16. {lifecyclelogging-2.1.0 → lifecyclelogging-2.1.1}/src/lifecyclelogging/logging.py +0 -0
  17. {lifecyclelogging-2.1.0 → lifecyclelogging-2.1.1}/src/lifecyclelogging/py.typed +0 -0
  18. {lifecyclelogging-2.1.0 → lifecyclelogging-2.1.1}/src/lifecyclelogging/utils.py +0 -0
  19. {lifecyclelogging-2.1.0 → lifecyclelogging-2.1.1}/tests/__init__.py +0 -0
  20. {lifecyclelogging-2.1.0 → lifecyclelogging-2.1.1}/tests/conftest.py +0 -0
  21. {lifecyclelogging-2.1.0 → lifecyclelogging-2.1.1}/tests/integration/__init__.py +0 -0
  22. {lifecyclelogging-2.1.0 → lifecyclelogging-2.1.1}/tests/integration/test_lifecycle_logging.py +0 -0
  23. {lifecyclelogging-2.1.0 → lifecyclelogging-2.1.1}/tests/test_exit_run.py +0 -0
  24. {lifecyclelogging-2.1.0 → lifecyclelogging-2.1.1}/tests/test_handlers.py +0 -0
  25. {lifecyclelogging-2.1.0 → lifecyclelogging-2.1.1}/tests/test_logging.py +0 -0
  26. {lifecyclelogging-2.1.0 → lifecyclelogging-2.1.1}/tests/test_properties.py +0 -0
  27. {lifecyclelogging-2.1.0 → lifecyclelogging-2.1.1}/tests/test_utils.py +0 -0
@@ -4,6 +4,13 @@
4
4
 
5
5
  <!-- version list -->
6
6
 
7
+ ## [2.1.1](https://github.com/jbcom/extended-data-library/compare/logging-v2.1.0...logging-v2.1.1) (2026-04-16)
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * **connectors:** align exports and clean api docs warnings ([#133](https://github.com/jbcom/extended-data-library/issues/133)) ([ea125f8](https://github.com/jbcom/extended-data-library/commit/ea125f8360026c7404f750f636d41345ef682a3f))
13
+
7
14
  ## [2.1.0](https://github.com/jbcom/extended-data-library/compare/logging-v2.0.0...logging-v2.1.0) (2026-02-26)
8
15
 
9
16
 
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: lifecyclelogging
3
- Version: 2.1.0
3
+ Version: 2.1.1
4
4
  Summary: A comprehensive logging utility for managing application lifecycle logs
5
- Project-URL: Documentation, https://extendeddata.dev
6
- Project-URL: Issues, https://github.com/extended-data-library/extended-data-types/issues
7
- Project-URL: Source, https://github.com/extended-data-library/extended-data-types
8
- Project-URL: Changelog, https://github.com/extended-data-library/extended-data-types/blob/main/packages/lifecyclelogging/CHANGELOG.md
5
+ Project-URL: Documentation, https://extendeddata.dev/packages/logging/
6
+ Project-URL: Issues, https://github.com/jbcom/extended-data-library/issues
7
+ Project-URL: Source, https://github.com/jbcom/extended-data-library/tree/main/packages/lifecyclelogging
8
+ Project-URL: Changelog, https://github.com/jbcom/extended-data-library/blob/main/packages/lifecyclelogging/CHANGELOG.md
9
9
  Author-email: Jon Bogaty <jon@jonbogaty.com>
10
10
  Maintainer-email: Jon Bogaty <jon@jonbogaty.com>
11
11
  License: MIT
@@ -24,13 +24,10 @@ Requires-Python: >=3.10
24
24
  Requires-Dist: extended-data-types
25
25
  Requires-Dist: rich>=13.7.1
26
26
  Provides-Extra: docs
27
- Requires-Dist: docutils>=0.21.2; extra == 'docs'
28
27
  Requires-Dist: myst-parser>=3.0.1; extra == 'docs'
29
- Requires-Dist: sphinx-autodoc-typehints>=2.2.0; extra == 'docs'
30
28
  Requires-Dist: sphinx-autodoc2>=0.5.0; extra == 'docs'
31
- Requires-Dist: sphinx-rtd-theme>=2.0.0; extra == 'docs'
29
+ Requires-Dist: sphinx-markdown-builder>=0.6.0; extra == 'docs'
32
30
  Requires-Dist: sphinx>=7.4.0; extra == 'docs'
33
- Requires-Dist: sphinxawesome-theme>=5.2.0; extra == 'docs'
34
31
  Provides-Extra: tests
35
32
  Requires-Dist: coverage[toml]>=7.6.0; extra == 'tests'
36
33
  Requires-Dist: hypothesis>=6.100.2; extra == 'tests'
@@ -157,5 +154,5 @@ Contributions are welcome! Please see the [Contributing Guidelines](https://gith
157
154
 
158
155
  - [**PyPI**](https://pypi.org/project/lifecyclelogging/)
159
156
  - [**GitHub**](https://github.com/jbcom/extended-data-library/tree/main/packages/lifecyclelogging)
160
- - [**Documentation**](https://extendeddata.dev)
157
+ - [**Documentation**](https://extendeddata.dev/packages/logging/)
161
158
  - [**Changelog**](https://github.com/jbcom/extended-data-library/blob/main/packages/lifecyclelogging/CHANGELOG.md)
@@ -114,5 +114,5 @@ Contributions are welcome! Please see the [Contributing Guidelines](https://gith
114
114
 
115
115
  - [**PyPI**](https://pypi.org/project/lifecyclelogging/)
116
116
  - [**GitHub**](https://github.com/jbcom/extended-data-library/tree/main/packages/lifecyclelogging)
117
- - [**Documentation**](https://extendeddata.dev)
117
+ - [**Documentation**](https://extendeddata.dev/packages/logging/)
118
118
  - [**Changelog**](https://github.com/jbcom/extended-data-library/blob/main/packages/lifecyclelogging/CHANGELOG.md)
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "lifecyclelogging"
7
- version = "2.1.0"
7
+ version = "2.1.1"
8
8
  description = "A comprehensive logging utility for managing application lifecycle logs"
9
9
  requires-python = ">=3.10"
10
10
  license = { text = "MIT" }
@@ -30,10 +30,10 @@ dependencies = [
30
30
  ]
31
31
 
32
32
  [project.urls]
33
- Documentation = "https://extendeddata.dev"
34
- Issues = "https://github.com/extended-data-library/extended-data-types/issues"
35
- Source = "https://github.com/extended-data-library/extended-data-types"
36
- Changelog = "https://github.com/extended-data-library/extended-data-types/blob/main/packages/lifecyclelogging/CHANGELOG.md"
33
+ Documentation = "https://extendeddata.dev/packages/logging/"
34
+ Issues = "https://github.com/jbcom/extended-data-library/issues"
35
+ Source = "https://github.com/jbcom/extended-data-library/tree/main/packages/lifecyclelogging"
36
+ Changelog = "https://github.com/jbcom/extended-data-library/blob/main/packages/lifecyclelogging/CHANGELOG.md"
37
37
 
38
38
  [project.optional-dependencies]
39
39
  tests = [
@@ -45,12 +45,9 @@ tests = [
45
45
  ]
46
46
  docs = [
47
47
  "sphinx>=7.4.0",
48
- "sphinxawesome-theme>=5.2.0",
49
- "sphinx-autodoc2>=0.5.0",
50
- "sphinx-autodoc-typehints>=2.2.0",
51
- "sphinx-rtd-theme>=2.0.0",
52
48
  "myst-parser>=3.0.1",
53
- "docutils>=0.21.2",
49
+ "sphinx-autodoc2>=0.5.0",
50
+ "sphinx-markdown-builder>=0.6.0",
54
51
  ]
55
52
  typing = ["mypy>=1.10.1"]
56
53
 
@@ -77,7 +74,6 @@ source = ["src/lifecyclelogging"]
77
74
  branch = true
78
75
  parallel = true
79
76
  source = ["lifecyclelogging"]
80
- relative_files = true
81
77
 
82
78
  [tool.coverage.xml]
83
79
  output = "coverage.xml"
@@ -7,7 +7,7 @@ configurable logging for console and file outputs, and clean exit functionality.
7
7
  from __future__ import annotations
8
8
 
9
9
 
10
- __version__ = "2.1.0"
10
+ __version__ = "2.1.1"
11
11
 
12
12
  from lifecyclelogging.logging import ExitRunError, KeyTransform, Logging
13
13