Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@ repos:
exclude: CHANGELOG.md

- repo: https://github.com/JoC0de/pre-commit-prettier
rev: v3.5.3
rev: v3.6.2
hooks:
- id: prettier
files: \.(json|yml|yaml|toml)
# https://prettier.io/docs/en/options.html#print-width
args: ["--print-width=120"]

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.11.12
rev: v0.12.2
hooks:
- id: ruff
args: ["--fix"]
Expand Down
12 changes: 1 addition & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,29 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

---

## [Unreleased] - YYYY-MM-DD
## [0.15.0] - 2025-07-26

### Added

- CI: add `force-check-all` input to MD link check workflow ([#408](https://github.com/Lightning-AI/utilities/pull/408))


- CLI: replace min dependencies also in `pyproject.toml` ([#414](https://github.com/Lightning-AI/utilities/pull/414))


### Changed

- CLI: switch from `fire` to `jsonargparse` ([#371](https://github.com/Lightning-AI/utilities/pull/371))


- CI: relax markdown-link-check ([#416](https://github.com/Lightning-AI/utilities/pull/416))


### Fixed

-


---


Expand Down
4 changes: 2 additions & 2 deletions src/lightning_utilities/__about__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import time

__version__ = "0.15.0dev"
__version__ = "0.15.0"
__author__ = "Lightning AI et al."
__author_email__ = "pytorch@lightning.ai"
__author_email__ = "developer@lightning.ai"
__license__ = "Apache-2.0"
__copyright__ = f"Copyright (c) 2022-{time.strftime('%Y')}, {__author__}."
__homepage__ = "https://github.com/Lightning-AI/utilities"
Expand Down
Loading