Skip to content

Commit c77ec81

Browse files
docs: release v2.2.0 (#78)
* docs: release v2.2.0
1 parent 713d178 commit c77ec81

File tree

5 files changed

+37
-3
lines changed

5 files changed

+37
-3
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
33
[English Documents Available](https://github.com/ZhuoZhuoCrayon/throttled-py/blob/main/CHANGELOG_EN.md) | 简体中文
44

55

6+
## v2.2.0 - 2025-05-31
7+
8+
[English Documents Available](https://github.com/ZhuoZhuoCrayon/throttled-py/blob/main/CHANGELOG_EN.md#v220---2025-05-31) | 简体中文
9+
10+
### 🚀 功能
11+
12+
- feat: 增强 Throttled 装饰器,支持 cost 参数 @River-Shi (#77)
13+
14+
### 📝 文档
15+
16+
- docs: 在 README 中添加 HelloGitHub 推荐徽章 @ZhuoZhuoCrayon (#76)
17+
18+
**完整更新日志**: https://github.com/ZhuoZhuoCrayon/throttled-py/compare/v2.1.0...v2.2.0
19+
20+
---
21+
22+
623
## v2.1.0 - 2025-05-26
724

825
[English Documents Available](https://github.com/ZhuoZhuoCrayon/throttled-py/blob/main/CHANGELOG_EN.md#v210---2025-05-26) | 简体中文

CHANGELOG_EN.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
33
[简体中文](https://github.com/ZhuoZhuoCrayon/throttled-py/blob/main/CHANGELOG.md) | English
44

55

6+
## v2.2.0 - 2025-05-31
7+
8+
[简体中文](https://github.com/ZhuoZhuoCrayon/throttled-py/blob/main/CHANGELOG.md#v220---2025-05-31) | English
9+
10+
### 🚀 New Features
11+
12+
- feat: enhance Throttled decorator with cost parameter @River-Shi (#77)
13+
14+
### 📝 Documentation
15+
16+
- docs: add HelloGitHub recommendation badge to README @ZhuoZhuoCrayon (#76)
17+
18+
**Full Changelog**: https://github.com/ZhuoZhuoCrayon/throttled-py/compare/v2.1.0...v2.2.0
19+
20+
---
21+
22+
623
## v2.1.0 - 2025-05-26
724

825
[简体中文](https://github.com/ZhuoZhuoCrayon/throttled-py/blob/main/CHANGELOG.md#v210---2025-05-26) | English

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "throttled-py"
3-
version = "2.1.0"
3+
version = "2.2.0"
44
description = "🔧 High-performance Python rate limiting library with multiple algorithms (Fixed Window, Sliding Window, Token Bucket, Leaky Bucket & GCRA) and storage backends (Redis, In-Memory)."
55
authors = ["ZhuoZhuoCrayon <crayon.ccxx@gmail.com>"]
66
license = "MIT"

throttled/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
)
2727
from .throttled import Throttled
2828

29-
__version__ = "2.1.0"
29+
__version__ = "2.2.0"
3030
VERSION = tuple(map(int, __version__.split(".")))
3131

3232

throttled/asyncio/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
)
2727
from .throttled import Throttled
2828

29-
__version__ = "2.1.0"
29+
__version__ = "2.2.0"
3030
VERSION = tuple(map(int, __version__.split(".")))
3131

3232
__all__ = [

0 commit comments

Comments
 (0)