Skip to content

Commit fb2f055

Browse files
committed
-beta verssion
1 parent 14d4392 commit fb2f055

4 files changed

Lines changed: 559 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [0.2.2] - 2025-12-25
8+
## [0.2.2-beta] - 2025-12-25
99

1010
### Added
1111
- **LocalFileCache**: filesystem-backed storage with TTL, atomic writes, optional compression, and dedupe to skip identical rewrites.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "advanced-caching"
7-
version = "0.2.2"
7+
version = "0.2.2-beta"
88
description = "Production-ready composable caching with TTL, SWR, and background refresh patterns for Python."
99
readme = "README.md"
1010
requires-python = ">=3.10"

src/advanced_caching/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Expose storage backends, decorators, and scheduler utilities under `advanced_caching`.
55
"""
66

7-
__version__ = "0.2.2"
7+
__version__ = "0.2.2-beta"
88

99
from .storage import (
1010
InMemCache,

0 commit comments

Comments
 (0)