Skip to content

Commit e1ea4ce

Browse files
committed
[lib]
bumped lib version for new releasw
1 parent 11d227d commit e1ea4ce

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

cargo-function-history/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ parallel = ["git_function_history/parallel", "function_history_backend_thread/pa
1717
# c_lang = ["function_history_backend_thread/c_lang", "git_function_history/c_lang"]
1818

1919
[dependencies]
20-
git_function_history = { path = "../git-function-history-lib", version = "0.7.0", default-features = false}
20+
git_function_history = { path = "../git-function-history-lib", version = "0.7.1", default-features = false}
2121
ratatui = { version = "0.23.0", features = ["crossterm"], default-features = false }
2222
crossterm = "0.27.0"
2323
eyre = "0.6.8"

function_history_backend_thread/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ parallel = ["git_function_history/parallel"]
1818
# c_lang = ["git_function_history/c_lang"]
1919

2020
[dependencies]
21-
git_function_history = { path = "../git-function-history-lib", version = "0.7.0", default-features = false}
21+
git_function_history = { path = "../git-function-history-lib", version = "0.7.1", default-features = false}
2222
log = "0.4.20"

git-function-history-gui/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ parallel = ["git_function_history/parallel", "function_history_backend_thread/pa
1818

1919
[dependencies]
2020
eframe = {version = "0.22.0"}
21-
git_function_history = { path = "../git-function-history-lib", version = "0.7.0", default-features = false}
21+
git_function_history = { path = "../git-function-history-lib", version = "0.7.1", default-features = false}
2222
function_history_backend_thread = { path = "../function_history_backend_thread", version = "0.3.0", default-features = false}
2323
simple_file_logger = "0.3.1"
2424
log = "0.4.20"

git-function-history-lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "git_function_history"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
edition = "2021"
55
license = "MIT"
66
repository = "https://github.com/mendelsshop/git_function_history/tree/main/git-function-history-lib"

git-function-history-lib/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
Show the git history of a function or method.
77
Use the latest (beta) version by putting `"git_function_history" = { git = 'https://github.com/mendelsshop/git_function_history' }` in your cargo.toml under `[dependencies]` section.
8-
Use the latest [crates.io](https://crates.io/crates/git_function_history) by putting `git_function_history = "0.7.0"` in your cargo.toml under `[dependencies]` section.
8+
Use the latest [crates.io](https://crates.io/crates/git_function_history) by putting `git_function_history = "0.7.1"` in your cargo.toml under `[dependencies]` section.
99

10-
## features
10+
## features0.7.0
1111

1212
- parallel: use rayon to parallelize the git log search
1313

0 commit comments

Comments
 (0)