From d2e594de7b2914f8fab5cab98437a3a229804598 Mon Sep 17 00:00:00 2001 From: Kazuya Takei Date: Fri, 5 Apr 2024 03:16:29 +0900 Subject: [PATCH] release: Version 0.6.0 --- .age.toml | 2 +- .github/release-body.md | 4 ++-- CHANGELOG.md | 9 +++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- doc/conf.py | 2 +- doc/usage/installation.rst | 6 +++--- pyproject.toml | 2 +- 8 files changed, 19 insertions(+), 10 deletions(-) diff --git a/.age.toml b/.age.toml index d0bd059..cb1be4a 100644 --- a/.age.toml +++ b/.age.toml @@ -1,4 +1,4 @@ -current_version = "0.5.0" +current_version = "0.6.0" [[files]] path = "Cargo.toml" diff --git a/.github/release-body.md b/.github/release-body.md index 0a41eba..30b698b 100644 --- a/.github/release-body.md +++ b/.github/release-body.md @@ -1,4 +1,4 @@ Release updated `age` as built binary. -- Changelog is https://github.com/attakei/age-cli/blob/v0.5.0/CHANGELOG.md -- Source changes is https://github.com/attakei/age-cli/compare/v0.4.0...v0.5.0 +- Changelog is https://github.com/attakei/age-cli/blob/v0.6.0/CHANGELOG.md +- Source changes is https://github.com/attakei/age-cli/compare/v0.5.0...v0.6.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index d7154e3..06ce80a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## v0.6.0 - 2024-04-05 (JST) + +### Features + +- Find parent configuration files. +- Support extra toml file for configuration. + - `Cargo.toml` for Rust project. + - `pyproject.toml` for Python project. + ## v0.5.0 - 2024-03-22 (JST) ### Features diff --git a/Cargo.lock b/Cargo.lock index fe9b383..b771b51 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "age-cli" -version = "0.5.0" +version = "0.6.0" dependencies = [ "anyhow", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 6f02ea6..31581eb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "age-cli" -version = "0.5.0" +version = "0.6.0" edition = "2021" [[bin]] diff --git a/doc/conf.py b/doc/conf.py index 9782c96..79b6771 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -5,7 +5,7 @@ project = "age" copyright = "2024, attakei.net" author = "Kazuya Takei" -release = "0.5.0" +release = "0.6.0" # -- General configuration extensions = ["myst_parser", "sphinx.ext.todo"] diff --git a/doc/usage/installation.rst b/doc/usage/installation.rst index e9d9be7..8dd4b7e 100644 --- a/doc/usage/installation.rst +++ b/doc/usage/installation.rst @@ -16,9 +16,9 @@ You can download and use from GitHub Releases. .. code:: console - curl -L https://github.com/attakei/age-cli/releases/download/v0.5.0/age-v0.5.0_linux.zip | bsdtar x - - chmod +x age-v0.5.0/age - cp age-v0.5.0/age /path/to/bin/ + curl -L https://github.com/attakei/age-cli/releases/download/v0.6.0/age-v0.6.0_linux.zip | bsdtar x - + chmod +x age-v0.6.0/age + cp age-v0.6.0/age /path/to/bin/ Using Cargo ----------- diff --git a/pyproject.toml b/pyproject.toml index 067692b..fc17a0d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "age-cli" -version = "0.5.0" +version = "0.6.0" description = "This is virtual project for testing and documentation." authors = [ { name = "Kazuya Takei", email = "myself@attakei.net" }