mirror of
https://github.com/BurntSushi/ripgrep.git
synced 2025-08-02 21:21:58 -07:00
Compare commits
3 Commits
grep-0.2.6
...
12.1.0
Author | SHA1 | Date | |
---|---|---|---|
|
2658bd4e46 | ||
|
4b8e1f030e | ||
|
72807462e8 |
2
Cargo.lock
generated
2
Cargo.lock
generated
@@ -399,7 +399,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ripgrep"
|
name = "ripgrep"
|
||||||
version = "12.0.1"
|
version = "12.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bstr 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
"bstr 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
10
Cargo.toml
10
Cargo.toml
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "ripgrep"
|
name = "ripgrep"
|
||||||
version = "12.0.1" #:version
|
version = "12.1.0" #:version
|
||||||
authors = ["Andrew Gallant <jamslam@gmail.com>"]
|
authors = ["Andrew Gallant <jamslam@gmail.com>"]
|
||||||
description = """
|
description = """
|
||||||
ripgrep is a line-oriented search tool that recursively searches your current
|
ripgrep is a line-oriented search tool that recursively searches your current
|
||||||
@@ -19,10 +19,6 @@ build = "build.rs"
|
|||||||
autotests = false
|
autotests = false
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[badges]
|
|
||||||
# I guess crates.io does not support GitHub Action badges yet.
|
|
||||||
# Tracking PR: https://github.com/rust-lang/crates.io/pull/1838
|
|
||||||
|
|
||||||
[[bin]]
|
[[bin]]
|
||||||
bench = false
|
bench = false
|
||||||
path = "crates/core/main.rs"
|
path = "crates/core/main.rs"
|
||||||
@@ -47,8 +43,8 @@ members = [
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bstr = "0.2.12"
|
bstr = "0.2.12"
|
||||||
grep = { version = "0.2.5", path = "crates/grep" }
|
grep = { version = "0.2.6", path = "crates/grep" }
|
||||||
ignore = { version = "0.4.12", path = "crates/ignore" }
|
ignore = { version = "0.4.15", path = "crates/ignore" }
|
||||||
lazy_static = "1.1.0"
|
lazy_static = "1.1.0"
|
||||||
log = "0.4.5"
|
log = "0.4.5"
|
||||||
num_cpus = "1.8.0"
|
num_cpus = "1.8.0"
|
||||||
|
@@ -5,10 +5,24 @@ Release Checklist
|
|||||||
* Run `cargo outdated` and review semver incompatible updates. Unless there is
|
* Run `cargo outdated` and review semver incompatible updates. Unless there is
|
||||||
a strong motivation otherwise, review and update every dependency.
|
a strong motivation otherwise, review and update every dependency.
|
||||||
* Review changes for every crate in `crates` since the last ripgrep release.
|
* Review changes for every crate in `crates` since the last ripgrep release.
|
||||||
If the set of changes is non-empty, issue a new release for that crate.
|
If the set of changes is non-empty, issue a new release for that crate. Check
|
||||||
|
crates in the following order. After updating a crate, ensure minimal
|
||||||
|
versions are updated as appropriate in dependents. If an update is required,
|
||||||
|
run `cargo-up --no-push crates/{CRATE}/Cargo.toml`.
|
||||||
|
* crates/globset
|
||||||
|
* crates/ignore
|
||||||
|
* crates/cli
|
||||||
|
* crates/matcher
|
||||||
|
* crates/regex
|
||||||
|
* crates/pcre2
|
||||||
|
* crates/searcher
|
||||||
|
* crates/printer
|
||||||
|
* crates/grep (bump minimal versions as necessary)
|
||||||
|
* crates/core (do **not** bump version, but update dependencies as needed)
|
||||||
* Edit the `Cargo.toml` to set the new ripgrep version. Run
|
* Edit the `Cargo.toml` to set the new ripgrep version. Run
|
||||||
`cargo update -p ripgrep` so that the `Cargo.lock` is updated. Commit the
|
`cargo update -p ripgrep` so that the `Cargo.lock` is updated. Commit the
|
||||||
changes.
|
changes. Alternatively, use
|
||||||
|
`cargo-up --no-push --no-release Cargo.toml {VERSION}`.
|
||||||
* Create a new signed tag for the ripgrep release. Push it to GitHub.
|
* Create a new signed tag for the ripgrep release. Push it to GitHub.
|
||||||
* Wait for CI to finish creating the release. If the release build fails, then
|
* Wait for CI to finish creating the release. If the release build fails, then
|
||||||
delete the tag from GitHub, make fixes, re-tag, delete the release and push.
|
delete the tag from GitHub, make fixes, re-tag, delete the release and push.
|
||||||
|
@@ -15,7 +15,7 @@ license = "Unlicense/MIT"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
atty = "0.2.11"
|
atty = "0.2.11"
|
||||||
bstr = "0.2.0"
|
bstr = "0.2.0"
|
||||||
globset = { version = "0.4.3", path = "../globset" }
|
globset = { version = "0.4.5", path = "../globset" }
|
||||||
lazy_static = "1.1.0"
|
lazy_static = "1.1.0"
|
||||||
log = "0.4.5"
|
log = "0.4.5"
|
||||||
regex = "1.1"
|
regex = "1.1"
|
||||||
|
@@ -19,7 +19,7 @@ bench = false
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
crossbeam-utils = "0.7.0"
|
crossbeam-utils = "0.7.0"
|
||||||
globset = { version = "0.4.3", path = "../globset" }
|
globset = { version = "0.4.5", path = "../globset" }
|
||||||
lazy_static = "1.1"
|
lazy_static = "1.1"
|
||||||
log = "0.4.5"
|
log = "0.4.5"
|
||||||
memchr = "2.1"
|
memchr = "2.1"
|
||||||
|
Reference in New Issue
Block a user