From 7478ef8d5328e84d1d274e20d1688ca25088f26a Mon Sep 17 00:00:00 2001 From: Kazuya Takei Date: Fri, 22 Mar 2024 12:27:48 +0900 Subject: [PATCH] release: Version 0.5.0 --- .age.toml | 2 +- .github/release-body.md | 4 ++-- CHANGELOG.md | 15 +++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- doc/conf.py | 2 +- doc/usage/installation.rst | 6 +++--- pyproject.toml | 2 +- 8 files changed, 25 insertions(+), 10 deletions(-) diff --git a/.age.toml b/.age.toml index a9f4a0b..d0bd059 100644 --- a/.age.toml +++ b/.age.toml @@ -1,4 +1,4 @@ -current_version = "0.4.0" +current_version = "0.5.0" [[files]] path = "Cargo.toml" diff --git a/.github/release-body.md b/.github/release-body.md index 0fad9ad..0a41eba 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.4.0/CHANGELOG.md -- Source changes is https://github.com/attakei/age-cli/compare/v0.3.0...v0.4.0 +- 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 diff --git a/CHANGELOG.md b/CHANGELOG.md index bad7c9c..d7154e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## v0.5.0 - 2024-03-22 (JST) + +### Features + +- Support multiline replacement. +- `init` command support `--preset` option to customize first `.age.toml`. + +### Misc + +- Rename project (binary name is not changed). +- Transfer repository into personarl space. +- Add management target by age. +- Update documents. +- Launch documentation site on https://age.attakei.dev/ + ## v0.4.0 - 2024-03-21 (JST) ### Breaking chances diff --git a/Cargo.lock b/Cargo.lock index 46371dc..96b03da 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "age-cli" -version = "0.4.0" +version = "0.5.0" dependencies = [ "anyhow", "chrono", diff --git a/Cargo.toml b/Cargo.toml index fc6458c..e803ab3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "age-cli" -version = "0.4.0" +version = "0.5.0" edition = "2021" [[bin]] diff --git a/doc/conf.py b/doc/conf.py index f5d546d..9782c96 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -5,7 +5,7 @@ project = "age" copyright = "2024, attakei.net" author = "Kazuya Takei" -release = "0.4.0" +release = "0.5.0" # -- General configuration extensions = ["myst_parser", "sphinx.ext.todo"] diff --git a/doc/usage/installation.rst b/doc/usage/installation.rst index f72c0da..e9d9be7 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.4.0/age-v0.4.0_linux.zip | bsdtar x - - chmod +x age-v0.4.0/age - cp age-v0.4.0/age /path/to/bin/ + 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/ Using Cargo ----------- diff --git a/pyproject.toml b/pyproject.toml index a58fc8e..067692b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "age-cli" -version = "0.4.0" +version = "0.5.0" description = "This is virtual project for testing and documentation." authors = [ { name = "Kazuya Takei", email = "myself@attakei.net" }