mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-27 05:23:24 +00:00
internal: Handle fractional release numbers in changelog naming
This commit is contained in:
parent
7ca5d165f8
commit
e48ed5316f
1 changed files with 9 additions and 1 deletions
|
@ -36,7 +36,15 @@ impl flags::Release {
|
|||
|
||||
let today = date_iso(sh)?;
|
||||
let commit = cmd!(sh, "git rev-parse HEAD").read()?;
|
||||
let changelog_n = sh.read_dir(changelog_dir.as_path())?.len();
|
||||
let changelog_n = sh
|
||||
.read_dir(changelog_dir.as_path())?
|
||||
.into_iter()
|
||||
.filter_map(|p| p.file_stem().map(|s| s.to_string_lossy().to_string()))
|
||||
.filter_map(|s| s.splitn(5, '-').last().map(|n| n.replace('-', ".")))
|
||||
.filter_map(|s| s.parse::<f32>().ok())
|
||||
.map(|n| 1 + n.floor() as usize)
|
||||
.max()
|
||||
.unwrap_or_default();
|
||||
|
||||
for adoc in [
|
||||
"manual.adoc",
|
||||
|
|
Loading…
Reference in a new issue