alt-python-logger 1.1.0__tar.gz → 1.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 (19) hide show
  1. {alt_python_logger-1.1.0 → alt_python_logger-1.1.1}/PKG-INFO +2 -2
  2. {alt_python_logger-1.1.0 → alt_python_logger-1.1.1}/README.md +1 -1
  3. {alt_python_logger-1.1.0 → alt_python_logger-1.1.1}/pyproject.toml +1 -1
  4. {alt_python_logger-1.1.0 → alt_python_logger-1.1.1}/.gitignore +0 -0
  5. {alt_python_logger-1.1.0 → alt_python_logger-1.1.1}/logger/__init__.py +0 -0
  6. {alt_python_logger-1.1.0 → alt_python_logger-1.1.1}/logger/caching_console.py +0 -0
  7. {alt_python_logger-1.1.0 → alt_python_logger-1.1.1}/logger/caching_logger_factory.py +0 -0
  8. {alt_python_logger-1.1.0 → alt_python_logger-1.1.1}/logger/configurable_logger.py +0 -0
  9. {alt_python_logger-1.1.0 → alt_python_logger-1.1.1}/logger/console_logger.py +0 -0
  10. {alt_python_logger-1.1.0 → alt_python_logger-1.1.1}/logger/delegating_logger.py +0 -0
  11. {alt_python_logger-1.1.0 → alt_python_logger-1.1.1}/logger/json_formatter.py +0 -0
  12. {alt_python_logger-1.1.0 → alt_python_logger-1.1.1}/logger/logger.py +0 -0
  13. {alt_python_logger-1.1.0 → alt_python_logger-1.1.1}/logger/logger_category_cache.py +0 -0
  14. {alt_python_logger-1.1.0 → alt_python_logger-1.1.1}/logger/logger_factory.py +0 -0
  15. {alt_python_logger-1.1.0 → alt_python_logger-1.1.1}/logger/logger_level.py +0 -0
  16. {alt_python_logger-1.1.0 → alt_python_logger-1.1.1}/logger/multi_logger.py +0 -0
  17. {alt_python_logger-1.1.0 → alt_python_logger-1.1.1}/logger/plain_text_formatter.py +0 -0
  18. {alt_python_logger-1.1.0 → alt_python_logger-1.1.1}/tests/test_logger_full.py +0 -0
  19. {alt_python_logger-1.1.0 → alt_python_logger-1.1.1}/tests/test_logger_primitives.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: alt-python-logger
3
- Version: 1.1.0
3
+ Version: 1.1.1
4
4
  Summary: Spring-inspired config-driven logger for Python
5
5
  Requires-Python: >=3.12
6
6
  Requires-Dist: alt-python-common
@@ -25,7 +25,7 @@ to Python.
25
25
  ## Install
26
26
 
27
27
  ```bash
28
- uv add logger # or: pip install logger
28
+ uv add alt-python-logger # or: pip install alt-python-logger
29
29
  ```
30
30
 
31
31
  Requires Python 3.12+ and the `config` package (workspace dependency).
@@ -16,7 +16,7 @@ to Python.
16
16
  ## Install
17
17
 
18
18
  ```bash
19
- uv add logger # or: pip install logger
19
+ uv add alt-python-logger # or: pip install alt-python-logger
20
20
  ```
21
21
 
22
22
  Requires Python 3.12+ and the `config` package (workspace dependency).
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "alt-python-logger"
3
- version = "1.1.0"
3
+ version = "1.1.1"
4
4
  description = "Spring-inspired config-driven logger for Python"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.12"