Skip to content

Commit 02db07a

Browse files
committed
release: Version 0.2.0
1 parent 3dc10c7 commit 02db07a

File tree

6 files changed

+27
-7
lines changed

6 files changed

+27
-7
lines changed

.age.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
current_version = "0.1.0"
1+
current_version = "0.2.0"
22

33
[[files]]
44
path = "pyproject.toml"

.github/release-body.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
Release atsphinx-qrcode v0.1.0
1+
Release atsphinx-qrcode v0.2.0
22

3-
- Changelog is https://github.com/atsphinx/qrcode/blob/v0.1.0/CHANGES.rst
3+
- Changelog is https://github.com/atsphinx/qrcode/blob/v0.2.0/CHANGES.rst

CHANGES.rst

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,26 @@
22
Change logs
33
===========
44

5+
Version 0.2.0
6+
=============
7+
8+
:date: 2025-09-08 (Asia/Tokyo)
9+
10+
Features
11+
--------
12+
13+
* Support all options of ``image`` directive.
14+
* Add additional options.
15+
16+
* ``qr_version`` : Version number of symbol.
17+
* ``qr_error_correction`` : Level of error correction.
18+
19+
Others
20+
------
21+
22+
* [docs] Translate to Japanese.
23+
* [docs] Show example of additional options.
24+
525
Version 0.1.0
626
=============
727

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[project]
22
name = "atsphinx-qrcode"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
description = "Render QR code image on Sphinx document."
55
authors = [{name = "Kazuya Takei", email = "[email protected]"}]
66
license = "Apache-2.0"
77
requires-python = ">= 3.9"
88
classifiers = [
9-
"Development Status :: 3 - Alpha",
9+
"Development Status :: 4 - Beta",
1010
"Framework :: Sphinx",
1111
"Framework :: Sphinx :: Extension",
1212
"Intended Audience :: Developers",

src/atsphinx/qrcode/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
if TYPE_CHECKING:
1212
from sphinx.application import Sphinx
1313

14-
__version__ = "0.1.0"
14+
__version__ = "0.2.0"
1515

1616

1717
class QRodeDirective(Image): # noqa: D101

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)