File tree 2 files changed +11
-2
lines changed
2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## Version 0.4.0
4
+
5
+ * The commit hashes are now always 10 characters long [ #13222 ] ( https://github.com/rust-lang/rust-clippy/pull/13222 )
6
+ * ` get_commit_date ` and ` get_commit_hash ` now return ` None ` if the ` git ` command fails instead of ` Some("") `
7
+ [ #13217 ] ( https://github.com/rust-lang/rust-clippy/pull/13217 )
8
+ * ` setup_version_info ` will now re-run when the git commit changes
9
+ [ #13329 ] ( https://github.com/rust-lang/rust-clippy/pull/13329 )
10
+ * New ` rerun_if_git_changes ` function was added [ #13329 ] ( https://github.com/rust-lang/rust-clippy/pull/13329 )
11
+
3
12
## Version 0.3.0
4
13
5
14
* Added ` setup_version_info!(); ` macro for automated scripts.
Original file line number Diff line number Diff line change @@ -13,10 +13,10 @@ build = "build.rs"
13
13
List rustc_tools_util as regular AND build dependency.
14
14
```` toml
15
15
[dependencies ]
16
- rustc_tools_util = " 0.3 .0"
16
+ rustc_tools_util = " 0.4 .0"
17
17
18
18
[build-dependencies ]
19
- rustc_tools_util = " 0.3 .0"
19
+ rustc_tools_util = " 0.4 .0"
20
20
````
21
21
22
22
In ` build.rs ` , generate the data in your ` main() `
You can’t perform that action at this time.
0 commit comments