Skip to content

Commit

Permalink
Merge pull request #7 from piyoppi/v0.3.0
Browse files Browse the repository at this point in the history
Release v0.3.0
  • Loading branch information
piyoppi authored Apr 3, 2024
2 parents afe40ce + 51fc548 commit de9cfcb
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 3 deletions.
45 changes: 44 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
<!-- time-limited to="1999-12-31 23:59:59" -->
content
<!-- /time-limited -->
bar
```

(converted)

```text
foo
bar
```

If there is a blank line before or after the delete position, the blank line is kept.

```text
foo
<!-- time-limited to="1999-12-31 23:59:59" -->
content
<!-- /time-limited -->
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

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit de9cfcb

Please sign in to comment.