From 51fc54885d2a94970667463dc501e986c8ab05c0 Mon Sep 17 00:00:00 2001 From: piyoppi Date: Wed, 3 Apr 2024 22:54:20 +0900 Subject: [PATCH] Version 0.3.0 --- CHANGELOG.md | 45 ++++++++++++++++++++++++++++++++++++++++++++- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 46 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 024d112..be64f90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,49 @@ +# 0.3.0 + +The formatting process performed after the deletion of time-limited content has been improved. (https://github.com/piyoppi/chiritori/pull/5, https://github.com/piyoppi/chiritori/pull/6) + +If there is a blank line before and after the deletion position and a new line immediately after the deletion position, the new line immediately after the deletion position is deleted. + +(original) + +```text +foo + + content + +bar +``` + +(converted) + +```text +foo +bar +``` + +If there is a blank line before or after the delete position, the blank line is kept. + +```text +foo + + + content + + +bar +``` + +(converted) + +```text +foo + +bar +``` + # 0.2.0 -- Stdin is only received from pipes (https://github.com/piyoppi/chiritori/pull/3) +Stdin is only received from pipes (https://github.com/piyoppi/chiritori/pull/3) # 0.1.0 diff --git a/Cargo.lock b/Cargo.lock index 7322862..97dafdb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -105,7 +105,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "chiritori" -version = "0.2.0" +version = "0.3.0" dependencies = [ "atty", "chrono", diff --git a/Cargo.toml b/Cargo.toml index db11ba0..6885039 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chiritori" -version = "0.2.0" +version = "0.3.0" description = "A tool for finding and removing time-limited source code" repository = "https://github.com/piyoppi/chiritori" license = "MIT"