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 .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4
Expand Down
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres
to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [0.2.0] - unreleased
## [0.3.0] - 2026-08-25

### Added

- Support for Python 3.10 and 3.11. `requires-python` drops from `>=3.12` to `>=3.10`, and the test
workflow runs the suite on 3.10, 3.11, 3.12 and 3.13.

## [0.2.0] - 2026-08-25

### Added

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[project]
name = "mysiar-disk-cache-data"
version = "0.2.0"
version = "0.3.0"
description = "disk_cache_data decorator"
authors = [{ name = "Piotr Synowiec <psynowiec@gmail.com>" }]
requires-python = ">=3.12"
requires-python = ">=3.10"
readme = "README.md"
license = { file = "LICENSE" }

Expand Down
Loading