chore: bump version number

This commit is contained in:
2025-12-31 03:44:01 +02:00
parent 3a74e66131
commit 34f04f2350
4 changed files with 361 additions and 181 deletions

View File

@@ -1,10 +1,10 @@
[project]
name = "bunyan-formatter"
version = "0.1.4"
version = "0.1.5"
description = "A custom formatter for Python's logging module that outputs logs in the Bunyan JSON format."
dependencies = []
readme = "README.md"
requires-python = ">=3.9"
requires-python = ">=3.10"
authors = [{ name = "Kristofers Solo", email = "dev@kristofers.xyz" }]
license = { file = "LICENSE" }
keywords = ["logger", "logging", "bunyan", "formatter"]
@@ -17,6 +17,8 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Intended Audience :: Developers",
]
@@ -28,13 +30,13 @@ Tracker = "https://github.com/kristoferssolo/bunyan-formatter/issues"
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"mypy~=1.11",
"ruff~=0.6",
"pre-commit~=3.8",
"pytest~=8.3",
"tox~=4.18",
[dependency-groups]
dev = [
"mypy~=1.19",
"ruff~=0.14",
"pre-commit~=4.5",
"pytest~=9.0",
"tox~=4.32",
]
[tool.hatch.metadata]
@@ -47,7 +49,7 @@ packages = ["src/bunyan_formatter"]
show-fixes = true
line-length = 120
indent-width = 4
target-version = "py312"
target-version = "py313"
[tool.ruff.lint]
extend-select = [