knope 0.22.4

A command line tool for automating common development tasks
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use crate::helpers::{
    GitCommand::{Commit, Tag},
    TestCase,
};

#[test]
fn changesets() {
    TestCase::new(file!())
        .git(&[
            Commit("feat!: Existing feature"),
            Tag("v1.2.3"),
            Commit("feat: A new shared feature from a conventional commit"),
        ])
        .run("release");
}