Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .copier-answers.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changes here will be overwritten by Copier
_commit: b3a2452
_commit: 1c0960d
_src_path: git@github.com:inokufu/python-project-template.git
author_email: contact@inokufu.com
author_name: Inokufu
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ repos:
- tomli

- repo: https://github.com/astral-sh/uv-pre-commit
rev: 0.9.22
rev: 0.10.8
hooks:
- id: uv-lock

- repo: https://github.com/owenlamont/uv-secure
rev: 0.15.4
rev: 0.17.0
hooks:
- id: uv-secure

Expand Down
6 changes: 6 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.3.1] - 2026-03-06

### Changed

- Upgrade dependencies

## [0.3.0] - 2026-01-06

### Changed
Expand Down
17 changes: 9 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "logger"
version = "0.3.0"
version = "0.3.1"
description = "Python logger"
authors = [
{ name = "Inokufu", email = "contact@inokufu.com" }
Expand All @@ -9,25 +9,26 @@ readme = "docs/README.md"
requires-python = ">= 3.14"

dependencies = [
"loguru~=0.7.3",
"loguru>=0.7.3,<0.7.4",
]

[tool.uv]
add-bounds = "minor"
package = true

[dependency-groups]
dev = [
"diff-cover>=10.1.0,<10.2.0",
"griffe-inherited-docstrings>=1.1.2,<1.2.0",
"diff-cover>=10.2.0,<10.3.0",
"griffe-inherited-docstrings>=1.1.3,<1.2.0",
"mkdocs>=1.6.1,<1.7.0",
"mkdocs-material>=9.6.23,<9.7.0",
"mkdocstrings-python>=1.18.2,<1.19.0",
"mkdocs-material>=9.7.4,<9.8.0",
"mkdocstrings-python>=2.0.3,<2.1.0",
"pre-commit>=4.5.1,<4.6.0",
"pytest>=9.0.2,<9.1.0",
"pytest-cov>=7.0.0,<7.1.0",
"pytest-mock>=3.15.1,<3.16.0",
"ruff>=0.14.10,<0.14.11",
"ty>=0.0.9,<0.0.10",
"ruff>=0.15.4,<0.15.5",
"ty>=0.0.20,<0.0.21",
]

[tool.ruff]
Expand Down
Loading