Add a deprecation note for removed build-string (#7307)

Build string was removed for 0.72 by #7144

Adds a deprecation message
This commit is contained in:
Stefan Holderbach 2022-12-01 16:26:59 +01:00 committed by GitHub
parent 1f175d4c98
commit e92678ea2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,5 +14,9 @@ pub fn deprecated_commands() -> HashMap<String, String> {
("all?".to_string(), "all".to_string()), ("all?".to_string(), "all".to_string()),
("any?".to_string(), "any".to_string()), ("any?".to_string(), "any".to_string()),
("empty?".to_string(), "is-empty".to_string()), ("empty?".to_string(), "is-empty".to_string()),
(
"build-string".to_string(),
"str join'/'string concatenation with '+'".to_string(),
),
]) ])
} }