Skip to content

Commit 68cc412

Browse files
authored
🔖 bump version to 0.5.0 (#13)
* 🔖 bump version to 0.5.0 * docs: fix installation version check
1 parent 3dc7a24 commit 68cc412

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

docs/installation.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,9 @@ uv pip install "quickthumb[rembg]"
3939
## Verify the installation
4040

4141
```python
42-
import quickthumb
43-
print(quickthumb.__version__)
42+
from importlib.metadata import version
43+
44+
print(version("quickthumb"))
4445
```
4546

4647
## Environment Variables

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "quickthumb"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
description = "Programmatic thumbnail and social image generation with layered Python and JSON APIs"
55
authors = [{name = "Seonu Jang"}]
66
license = {text = "MIT"}

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)