release-plz 0.3.157

Update version and changelog based on semantic versioning and conventional commits
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use clap::ValueEnum;
use clap_complete::Shell;

use crate::helpers;

#[test]
fn test_generate_completions() {
    for &shell in Shell::value_variants() {
        helpers::cmd::release_plz_cmd("target".into())
            .arg("generate-completions")
            .arg(shell.to_string())
            .assert()
            .success();
    }
}