From 9bf5f1cddc10ce8900b8543c2990103dc4318b47 Mon Sep 17 00:00:00 2001 From: Kazuya Takei Date: Sun, 17 Mar 2024 19:53:36 +0900 Subject: [PATCH] release: Version 0.1.0 --- .age.toml | 2 +- CHANGELOG.md | 10 ++++++++++ pyproject.toml | 2 +- src/atsphinx/helpers/__init__.py | 2 +- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/.age.toml b/.age.toml index 191f7b6..3b9e32a 100644 --- a/.age.toml +++ b/.age.toml @@ -1,4 +1,4 @@ -current_version = "0.0.0" +current_version = "0.1.0" [[files]] path = "pyproject.toml" diff --git a/CHANGELOG.md b/CHANGELOG.md index c14c4b9..c9fd728 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ # Changelog +## v0.1.0 - 2024-03-17 JST + +First release + +### Features + +- Define two decorator functions. + - `setup_only` outputs message if user run with unexpected builders. + - `emit_only` skip proc if user run with unexpected builders. + ## v0.0.0 - 2024-03-16 JST diff --git a/pyproject.toml b/pyproject.toml index e3e03d4..62b491a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "atsphinx-helpers" -version = "0.0.0" +version = "0.1.0" description = "Helper for my Sphinx extension" authors = [ { name = "Kazuya Takei", email = "myself@attakei.net" } diff --git a/src/atsphinx/helpers/__init__.py b/src/atsphinx/helpers/__init__.py index 18af8c5..7815d62 100644 --- a/src/atsphinx/helpers/__init__.py +++ b/src/atsphinx/helpers/__init__.py @@ -1,3 +1,3 @@ # noqa: D104 -__version__ = "0.0.0" +__version__ = "0.1.0"