Skip to content

Commit

Permalink
0.12.3
Browse files Browse the repository at this point in the history
  • Loading branch information
acheronfail committed May 31, 2023
1 parent fae1b46 commit fae1830
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 5 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
# 0.12.3

- fae1b46 update justfile
- 2d3cc3c Merge pull request #84 from acheronfail/fix-permissions
- fae15d3 fix: ensure replaced files have the same permissions/mode
- 3778c5b Merge pull request #81 from orhun/docs/update_readme
- da21428 Update README.md
- 3b6be87 Merge pull request #82 from acheronfail/wip/benchmark-json
- fae1e61 fix: why now... I really dislike CIs
- fae1a0b add: benchmarks for parsing json
- d1d1f3f docs: update README.md about installing on Arch Linux
- 9a6ea57 Merge pull request #79 from acheronfail/fix/incorrect-log-message

# 0.12.2

- 8cdce3d Merge pull request #78 from acheronfail/fix/atomic-replacements-across-filesystems
- fae175c fix: only mention log dir if logs are enabled

# 0.12.1

- fae1d38 fix: create temp files next to original files
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 = "repgrep"
version = "0.12.2"
version = "0.12.3"
description = "An interactive command line replacer for `ripgrep`."
homepage = "https://github.com/acheronfail/repgrep"
repository = "https://github.com/acheronfail/repgrep"
Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,10 @@ cargo install repgrep

Maintained by [orhun](https://github.com/orhun).

[`repgrep`](https://aur.archlinux.org/packages?O=0&K=repgrep) can be installed from the AUR using an [AUR helper](https://wiki.archlinux.org/title/AUR_helpers). For example:
[`repgrep`](https://aur.archlinux.org/packages?O=0&K=repgrep) can be installed
from the AUR using an [AUR helper](https://wiki.archlinux.org/title/AUR_helpers).

For example:

```bash
paru -S repgrep
Expand All @@ -82,4 +85,4 @@ cargo install --path .
[releases]: https://github.com/acheronfail/repgrep/releases
[`ripgrep` installation instructions]: https://github.com/BurntSushi/ripgrep/#installation

License: Unlicense OR MIT OR Apache-2.0
License: Unlicense OR MIT OR Apache-2.0
15 changes: 14 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,22 @@
//! cargo install repgrep
//! ```
//!
//! ### From the AUR (Arch Linux)
//!
//! Maintained by [orhun](https://github.com/orhun).
//!
//! [`repgrep`](https://aur.archlinux.org/packages?O=0&K=repgrep) can be installed
//! from the AUR using an [AUR helper](https://wiki.archlinux.org/title/AUR_helpers).
//!
//! For example:
//!
//! ```bash
//! paru -S repgrep
//! ```
//!
//! ### From Source (via Cargo)
//!
//! **NOTE**: The minimum Rust version required is `1.46.0`.
//! **NOTE**: The minimum Rust version required is `1.64.0`.
//!
//! ```bash
//! git clone https://github.com/acheronfail/repgrep/
Expand Down

0 comments on commit fae1830

Please sign in to comment.