summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2023-04-29 18:05:01 +0000
committerGitHub <noreply@github.com>2023-04-29 18:05:01 +0000
commit4e26b3a0213160ba14c1fed6a216a78b00172e81 (patch)
tree6973a8d65307bf6cb617529dd6dfa1060e1c5f05
parentd57a877e8fb10cd00bc978feac5e7b71f7e2bee9 (diff)
parent2148ed189b3664f5e9cf6456dd87058a9c309d57 (diff)
Merge #233
233: Feature/rename subcommands r=matthiasbeyer a=TheNeikos This solves #229 Current help output: ``` Commands: init Initialize the repository for cargo-changelog add Create a new changelog fragment verify-metadata Verify the metadata in existing changelog fragments create-release Use the current unreleased changelog fragments to generate the changelog for the next release generate-changelog Generate the changelog file from the fragments marked for release show help Print this message or the help of the given subcommand(s) ``` Co-authored-by: Marcel Müller <neikos@neikos.email>
-rw-r--r--README.md24
-rw-r--r--src/cli.rs6
-rw-r--r--src/command/add_command.rs (renamed from src/command/new_command.rs)4
-rw-r--r--src/command/create_release_command.rs (renamed from src/command/generate_command.rs)4
-rw-r--r--src/command/generate_changelog_command.rs (renamed from src/command/release_command.rs)6
-rw-r--r--src/command/mod.rs14
-rw-r--r--src/main.rs20
-rw-r--r--tests/add_command.rs (renamed from tests/new_command.rs)22
-rw-r--r--tests/add_command_creates_default_header.rs (renamed from tests/new_command_creates_default_header.rs)2
-rw-r--r--tests/add_command_editor.rs (renamed from tests/new_command_editor.rs)8
-rw-r--r--tests/common.rs4
-rw-r--r--tests/generate_command.rs24
-rw-r--r--tests/no_config_error.rs4
-rw-r--r--tests/no_repo_error.rs4
-rw-r--r--tests/release_command.rs40
-rw-r--r--tests/verify_metadata_command.rs2
16 files changed, 101 insertions, 87 deletions
diff --git a/README.md b/README.md
index 939b7e0..ced8ff0 100644
--- a/README.md
+++ b/README.md
@@ -28,34 +28,34 @@ seamlessly integrate with the generated one.
It works in the following way:
- Everytime you add/change/fix something and want to document it, you create a
- new changelog entry with `cargo changelog new`
-- Then, when a new version is released, you run `cargo changelog generate
+ new changelog entry with `cargo changelog add`
+- Then, when a new version is released, you run `cargo changelog create-release
<bump>` to move all unreleased changes to either the next patch/minor/major
version
- Finally, you re-generate the CHANGELOG.md file using `cargo changelog release`
Here's how they work individually:
-### cargo changelog new
+### cargo changelog add
-`cargo changelog new` generates a new changelog file in the unreleased
+`cargo changelog add` generates a new changelog file in the unreleased
changelog directory. Per default that is `.changelogs/unreleased`.
If interactive mode is enabled, which it is per-default, then you will be
prompted to fill in the fields of the changelog as well as a larger free-form
entry where you can explain the motivation and consequences of the changes.
-### cargo changelog generate <bump>
+### cargo changelog create-release <bump>
-Once you are done with one release, `cargo-changelog generate <version>` (for
-example `cargo changelog generate minor` for the next minor version) will take
-all unreleased changelogs and move them to `/.changelogs/0.1.0` (if "0.1.0" is
-your next minor version - you can of course also specify an explicit version
-with the `generate` subcommand).
+Once you are done with one release, `cargo-changelog create-release <version>`
+(for example `cargo changelog create-release minor` for the next minor version)
+will take all unreleased changelogs and move them to `/.changelogs/0.1.0` (if
+"0.1.0" is your next minor version - you can of course also specify an explicit
+version with the `create-release` subcommand).
-### cargo changelog release
+### cargo changelog generate-changelog
After that you can create your final `CHANGELOG.md` file using
-`cargo-changelog release`.
+`cargo-changelog generate-changelog`
This will take all released changelog entries and generate a new file,
overwriting the old.
diff --git a/src/cli.rs b/src/cli.rs
index 10e9405..3dcf923 100644
--- a/src/cli.rs
+++ b/src/cli.rs
@@ -32,7 +32,7 @@ pub enum Command {
Init,
/// Create a new changelog fragment
- New {
+ Add {
#[clap(short, long, action = clap::ArgAction::Set, default_value_t = true)]
interactive: bool,
@@ -74,10 +74,10 @@ pub enum Command {
/// Use the current unreleased changelog fragments to generate the changelog for the next
/// release
#[clap(subcommand)]
- Generate(VersionSpec),
+ CreateRelease(VersionSpec),
/// Generate the changelog file from the fragments marked for release
- Release {
+ GenerateChangelog {
/// Also write "unreleased" stuff to the CHANGELOG.md file
#[clap(long)]
all: bool,
diff --git a/src/command/new_command.rs b/src/command/add_command.rs
index 8c8192e..4e2941d 100644
--- a/src/command/new_command.rs
+++ b/src/command/add_command.rs
@@ -22,7 +22,7 @@ use crate::fragment::FragmentDataType;
use crate::fragment::FragmentDataTypeDefinite;
#[derive(Debug, typed_builder::TypedBuilder)]
-pub struct NewCommand {
+pub struct AddCommand {
interactive: bool,
edit: bool,
format: Format,
@@ -31,7 +31,7 @@ pub struct NewCommand {
git: Option<GitSetting>,
}
-impl crate::command::Command for NewCommand {
+impl crate::command::Command for AddCommand {
fn execute(self, workdir: &Path, config: &Configuration) -> Result<(), Error> {
let unreleased_dir_path = ensure_fragment_dir(workdir, config)?;
diff --git a/src/command/generate_command.rs b/src/command/create_release_command.rs
index 1d33bbc..a091701 100644
--- a/src/command/generate_command.rs
+++ b/src/command/create_release_command.rs
@@ -5,11 +5,11 @@ use crate::{
};
#[derive(Debug, typed_builder::TypedBuilder)]
-pub struct GenerateCommand {
+pub struct CreateReleaseCommand {
version: VersionSpec,
}
-impl crate::command::Command for GenerateCommand {
+impl crate::command::Command for CreateReleaseCommand {
fn execute(self, workdir: &Path, config: &Configuration) -> Result<(), Error> {
let version_string = find_version_string(workdir, &self.version)?;
log::debug!("Creating new directory for version '{}'", version_string);
diff --git a/src/command/release_command.rs b/src/command/generate_changelog_command.rs
index f9b5f80..1de3bdd 100644
--- a/src/command/release_command.rs
+++ b/src/command/generate_changelog_command.rs
@@ -4,13 +4,13 @@ use std::{collections::HashMap, io::BufReader, path::Path};
use crate::{config::Configuration, error::Error, fragment::Fragment};
#[derive(typed_builder::TypedBuilder)]
-pub struct ReleaseCommand {
+pub struct GenerateChangelogCommand {
repository: git2::Repository,
all: bool,
allow_dirty: bool,
}
-impl std::fmt::Debug for ReleaseCommand {
+impl std::fmt::Debug for GenerateChangelogCommand {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.debug_struct("ReleaseCommand")
.field("repository", &self.repository.workdir())
@@ -20,7 +20,7 @@ impl std::fmt::Debug for ReleaseCommand {
}
}
-impl crate::command::Command for ReleaseCommand {
+impl crate::command::Command for GenerateChangelogCommand {
fn execute(self, workdir: &Path, config: &Configuration) -> Result<(), Error> {
if crate::util::repo_is_dirty(&self.repository) && !self.allow_dirty {
return Err(Error::GitRepoDirty);
diff --git a/src/command/mod.rs b/src/command/mod.rs
index e9537fd..a0a2269 100644
--- a/src/command/mod.rs
+++ b/src/command/mod.rs
@@ -4,15 +4,15 @@ use crate::config::Configuration;
mod common;
-mod new_command;
-pub use self::new_command::NewCommand;
+mod add_command;
+pub use self::add_command::AddCommand;
-mod generate_command;
-pub use self::generate_command::GenerateCommand;
+mod create_release_command;
+pub use self::create_release_command::CreateReleaseCommand;
-mod release_command;
-pub use self::release_command::ReleaseCommand;
-pub use self::release_command::VersionData;
+mod generate_changelog_command;
+pub use self::generate_changelog_command::GenerateChangelogCommand;
+pub use self::generate_changelog_command::VersionData;
mod show;
pub use self::show::Show;
diff --git a/src/main.rs b/src/main.rs
index 162c610..eeaa847 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -56,14 +56,14 @@ fn main() -> miette::Result<()> {
match args.command {
Command::Init => unreachable!(), // reached above
- Command::New {
+ Command::Add {
interactive,
edit,
format,
read,
set,
git,
- } => crate::command::NewCommand::builder()
+ } => crate::command::AddCommand::builder()
.interactive(interactive)
.edit(edit)
.format(format)
@@ -77,17 +77,19 @@ fn main() -> miette::Result<()> {
.build()
.execute(&repo_workdir_path, &config)?,
- Command::Generate(version) => crate::command::GenerateCommand::builder()
+ Command::CreateRelease(version) => crate::command::CreateReleaseCommand::builder()
.version(version)
.build()
.execute(&repo_workdir_path, &config)?,
- Command::Release { all, allow_dirty } => crate::command::ReleaseCommand::builder()
- .repository(repository)
- .all(all)
- .allow_dirty(allow_dirty)
- .build()
- .execute(&repo_workdir_path, &config)?,
+ Command::GenerateChangelog { all, allow_dirty } => {
+ crate::command::GenerateChangelogCommand::builder()
+ .repository(repository)
+ .all(all)
+ .allow_dirty(allow_dirty)
+ .build()
+ .execute(&repo_workdir_path, &config)?
+ }
Command::Show { format, range } => crate::command::Show::builder()
.format(format)
diff --git a/tests/new_command.rs b/tests/add_command.rs
index fb32a43..4bc2501 100644
--- a/tests/new_command.rs
+++ b/tests/add_command.rs
@@ -3,7 +3,7 @@ use std::io::Write;
mod common;
#[test]
-fn new_command_creates_toml_file() {
+fn add_command_creates_toml_file() {
let temp_dir = tempfile::Builder::new()
.prefix("cargo-changelog")
.tempdir()
@@ -11,7 +11,7 @@ fn new_command_creates_toml_file() {
self::common::init_git(temp_dir.path());
self::common::init_cargo_changelog(temp_dir.path());
- self::common::cargo_changelog_new(temp_dir.path())
+ self::common::cargo_changelog_add(temp_dir.path())
.args([
"--format=toml",
"--set",
@@ -76,7 +76,7 @@ fn new_command_creates_toml_file() {
}
#[test]
-fn new_command_creates_unreleased_gitkeep() {
+fn add_command_creates_unreleased_gitkeep() {
let temp_dir = tempfile::Builder::new()
.prefix("cargo-changelog")
.tempdir()
@@ -98,7 +98,7 @@ fn new_command_creates_unreleased_gitkeep() {
}
#[test]
-fn new_command_with_text_creates_toml_with_text_from_stdin() {
+fn add_command_with_text_creates_toml_with_text_from_stdin() {
let temp_dir = tempfile::Builder::new()
.prefix("cargo-changelog")
.tempdir()
@@ -124,7 +124,7 @@ fn new_command_with_text_creates_toml_with_text_from_stdin() {
file.sync_all().unwrap();
drop(file); // make sure we close the handle
- self::common::cargo_changelog_new(temp_dir.path())
+ self::common::cargo_changelog_add(temp_dir.path())
.args([
"--format=toml",
"--set",
@@ -164,7 +164,7 @@ fn new_command_with_text_creates_toml_with_text_from_stdin() {
}
#[test]
-fn new_command_with_text_creates_toml_with_text_from_file() {
+fn add_command_with_text_creates_toml_with_text_from_file() {
let temp_dir = tempfile::Builder::new()
.prefix("cargo-changelog")
.tempdir()
@@ -190,7 +190,7 @@ fn new_command_with_text_creates_toml_with_text_from_file() {
file.sync_all().unwrap();
drop(file); // make sure we close the handle
- self::common::cargo_changelog_new(temp_dir.path())
+ self::common::cargo_changelog_add(temp_dir.path())
.args([
"--format=toml",
"--set",
@@ -232,7 +232,7 @@ fn new_command_with_text_creates_toml_with_text_from_file() {
}
#[test]
-fn new_command_creates_toml_header() {
+fn add_command_creates_toml_header() {
let temp_dir = tempfile::Builder::new()
.prefix("cargo-changelog")
.tempdir()
@@ -240,7 +240,7 @@ fn new_command_creates_toml_header() {
self::common::init_git(temp_dir.path());
self::common::init_cargo_changelog(temp_dir.path());
- self::common::cargo_changelog_new(temp_dir.path())
+ self::common::cargo_changelog_add(temp_dir.path())
.args([
"--format=toml",
"--set",
@@ -282,7 +282,7 @@ fn new_command_creates_toml_header() {
}
#[test]
-fn new_command_cannot_create_nonexistent_oneof() {
+fn add_command_cannot_create_nonexistent_oneof() {
let temp_dir = tempfile::Builder::new()
.prefix("cargo-changelog")
.tempdir()
@@ -306,7 +306,7 @@ fn new_command_cannot_create_nonexistent_oneof() {
file.sync_all().unwrap()
}
- self::common::cargo_changelog_new(temp_dir.path())
+ self::common::cargo_changelog_add(temp_dir.path())
.args([
"--format=toml",
"--set",
diff --git a/tests/new_command_creates_default_header.rs b/tests/add_command_creates_default_header.rs
index 577df7c..1f741f0 100644
--- a/tests/new_command_creates_default_header.rs
+++ b/tests/add_command_creates_default_header.rs
@@ -31,7 +31,7 @@ fn new_command_creates_default_header() {
file.sync_all().unwrap()
}
- self::common::cargo_changelog_new(temp_dir.path())
+ self::common::cargo_changelog_add(temp_dir.path())
.args([
"--format=toml",
"--set",
diff --git a/tests/new_command_editor.rs b/tests/add_command_editor.rs
index b4a30b4..bc7b4af 100644
--- a/tests/new_command_editor.rs
+++ b/tests/add_command_editor.rs
@@ -9,7 +9,7 @@ mod common;
// We create a shell script that "edits" a file by creating a file next to it with the same name +
// ".edited".
//
-// We set this script as EDITOR and VISUAL and then execute the "new" command. If the test sees the
+// We set this script as EDITOR and VISUAL and then execute the "add" command. If the test sees the
// "*.edited" file, it knows that the editor was called
//
@@ -18,7 +18,7 @@ touch "${1}.edited"
"#;
#[test]
-fn new_command_opens_editor() {
+fn add_command_opens_editor() {
let temp_dir = tempfile::Builder::new()
.prefix("cargo-changelog")
.tempdir()
@@ -28,7 +28,7 @@ fn new_command_opens_editor() {
let (script_temp_dir, editor_script_path) = {
let temp = tempfile::Builder::new()
- .prefix("cargo-changelog-new-editor-script-helper")
+ .prefix("cargo-changelog-add-editor-script-helper")
.tempdir()
.unwrap();
let script_path = temp.path().join("editor");
@@ -71,7 +71,7 @@ fn new_command_opens_editor() {
.into_iter(),
)
.args([
- "new",
+ "add",
"--interactive=false",
"--format=toml",
"--set",
diff --git a/tests/common.rs b/tests/common.rs
index efebe17..b28970b 100644
--- a/tests/common.rs
+++ b/tests/common.rs
@@ -39,9 +39,9 @@ pub fn cargo_changelog_cmd(dir: &std::path::Path) -> assert_cmd::Command {
cmd
}
-pub fn cargo_changelog_new(dir: &std::path::Path) -> assert_cmd::Command {
+pub fn cargo_changelog_add(dir: &std::path::Path) -> assert_cmd::Command {
let mut cmd = cargo_changelog_cmd(dir);
- cmd.arg("new");
+ cmd.arg("add");
cmd.arg("--interactive");
cmd.arg("false");
cmd.arg("--edit");
diff --git a/tests/generate_command.rs b/tests/generate_command.rs
index e01c58b..9a59409 100644
--- a/tests/generate_command.rs
+++ b/tests/generate_command.rs
@@ -5,13 +5,16 @@ use assert_cmd::Command;
mod common;
#[test]
-fn generate_command_creates_new_directory() {
+fn create_release_command_creates_new_directory() {
let temp_dir = tempfile::Builder::new()
.prefix("cargo-changelog")
.tempdir()
.unwrap();
self::common::init_git(temp_dir.path());
- self::common::init_cargo(temp_dir.path(), "cargo-changelog-testpkg-generatecommand");
+ self::common::init_cargo(
+ temp_dir.path(),
+ "cargo-changelog-testpkg-create-release_command",
+ );
self::common::init_cargo_changelog(temp_dir.path());
let unreleased_dir = temp_dir.path().join(".changelogs").join("unreleased");
@@ -19,10 +22,10 @@ fn generate_command_creates_new_directory() {
panic!("Unreleased directory does not exist");
}
- // call `cargo-changelog generate`
+ // call `cargo-changelog create-release`
Command::cargo_bin("cargo-changelog")
.unwrap()
- .args(["generate", "minor"])
+ .args(["create-release", "minor"])
.current_dir(&temp_dir)
.assert()
.success();
@@ -34,16 +37,19 @@ fn generate_command_creates_new_directory() {
}
#[test]
-fn generate_command_moves_from_unreleased_dir() {
+fn create_release_command_moves_from_unreleased_dir() {
let temp_dir = tempfile::Builder::new()
.prefix("cargo-changelog")
.tempdir()
.unwrap();
self::common::init_git(temp_dir.path());
- self::common::init_cargo(temp_dir.path(), "cargo-changelog-testpkg-generatecommand");
+ self::common::init_cargo(
+ temp_dir.path(),
+ "cargo-changelog-testpkg-create-release_command",
+ );
self::common::init_cargo_changelog(temp_dir.path());
- self::common::cargo_changelog_new(temp_dir.path())
+ self::common::cargo_changelog_add(temp_dir.path())
.args([
"--format=toml",
"--set",
@@ -80,10 +86,10 @@ fn generate_command_moves_from_unreleased_dir() {
panic!("Release directory should not exist yet");
}
- // call `cargo-changelog generate`
+ // call `cargo-changelog create-release`
Command::cargo_bin("cargo-changelog")
.unwrap()
- .args(["generate", "minor"])
+ .args(["create-release", "minor"])
.current_dir(&temp_dir)
.assert()
.success();
diff --git a/tests/no_config_error.rs b/tests/no_config_error.rs
index e77900d..e950c7b 100644
--- a/tests/no_config_error.rs
+++ b/tests/no_config_error.rs
@@ -12,7 +12,7 @@ fn no_configuration_file_errors() {
Command::cargo_bin("cargo-changelog")
.unwrap()
- .args(["release"]) // we need some subcommand, otherwise nothing happens
+ .args(["generate-changelog"]) // we need some subcommand, otherwise nothing happens
.current_dir(&temp_dir)
.assert()
.failure();
@@ -28,7 +28,7 @@ fn no_configuration_file_errors_with_error_message() {
Command::cargo_bin("cargo-changelog")
.unwrap()
- .args(["release"]) // we need some subcommand, otherwise nothing happens
+ .args(["generate-changelog"]) // we need some subcommand, otherwise nothing happens
.current_dir(&temp_dir)
.assert()
.stderr(predicates::str::contains(
diff --git a/tests/no_repo_error.rs b/tests/no_repo_error.rs
index 5337239..f12e250 100644
--- a/tests/no_repo_error.rs
+++ b/tests/no_repo_error.rs
@@ -9,7 +9,7 @@ fn no_repo_errors() {
Command::cargo_bin("cargo-changelog")
.unwrap()
- .args(["release"]) // we need some subcommand, otherwise nothing happens
+ .args(["generate-changelog"]) // we need some subcommand, otherwise nothing happens
.current_dir(&temp_dir)
.assert()
.failure();
@@ -24,7 +24,7 @@ fn no_repo_errors_with_no_repo_error_message() {
Command::cargo_bin("cargo-changelog")
.unwrap()
- .args(["release"]) // we need some subcommand, otherwise nothing happens
+ .args(["generate-changelog"]) // we need some subcommand, otherwise nothing happens
.current_dir(&temp_dir)
.assert()
.stderr(predicates::str::contains("could not find repository"));
diff --git a/tests/release_command.rs b/tests/release_command.rs
index b8bf018..5583e16 100644
--- a/tests/release_command.rs
+++ b/tests/release_command.rs
@@ -5,16 +5,16 @@ use assert_cmd::Command;
mod common;
#[test]
-fn release_command_works() {
+fn generate_changelog_command_works() {
let temp_dir = tempfile::Builder::new()
.prefix("cargo-changelog")
.tempdir()
.unwrap();
self::common::init_git(temp_dir.path());
- self::common::init_cargo(temp_dir.path(), "release_command_works");
+ self::common::init_cargo(temp_dir.path(), "generate_changelog_command_works");
self::common::init_cargo_changelog(temp_dir.path());
- self::common::cargo_changelog_new(temp_dir.path())
+ self::common::cargo_changelog_add(temp_dir.path())
.args([
"--format=toml",
"--set",
@@ -29,15 +29,15 @@ fn release_command_works() {
Command::cargo_bin("cargo-changelog")
.unwrap()
- .args(["generate", "minor"])
+ .args(["create-release", "minor"])
.current_dir(&temp_dir)
.assert()
.success();
- // call `cargo-changelog generate`
+ // call `cargo-changelog create-release`
Command::cargo_bin("cargo-changelog")
.unwrap()
- .args(["release"])
+ .args(["generate-changelog"])
.current_dir(&temp_dir)
.assert()
.success();
@@ -53,16 +53,19 @@ fn release_command_works() {
}
#[test]
-fn release_command_works_for_alpha_release() {
+fn generate_changelog_command_works_for_alpha_release() {
let temp_dir = tempfile::Builder::new()
.prefix("cargo-changelog")
.tempdir()
.unwrap();
self::common::init_git(temp_dir.path());
- self::common::init_cargo(temp_dir.path(), "release_command_works_for_alpha_release");
+ self::common::init_cargo(
+ temp_dir.path(),
+ "generate_changelog_command_works_for_alpha_release",
+ );
self::common::init_cargo_changelog(temp_dir.path());
- self::common::cargo_changelog_new(temp_dir.path())
+ self::common::cargo_changelog_add(temp_dir.path())
.args([
"--format=toml",
"--set",
@@ -101,15 +104,15 @@ fn release_command_works_for_alpha_release() {
Command::cargo_bin("cargo-changelog")
.unwrap()
- .args(["generate", "custom", "0.1.0-alpha.1"])
+ .args(["create-release", "custom", "0.1.0-alpha.1"])
.current_dir(&temp_dir)
.assert()
.success();
- // call `cargo-changelog generate`
+ // call `cargo-changelog create-release`
Command::cargo_bin("cargo-changelog")
.unwrap()
- .args(["release"])
+ .args(["generate-changelog"])
.current_dir(&temp_dir)
.assert()
.success();
@@ -129,16 +132,19 @@ fn release_command_works_for_alpha_release() {
}
#[test]
-fn release_command_works_with_suffix() {
+fn generate_changelog_command_works_with_suffix() {
let temp_dir = tempfile::Builder::new()
.prefix("cargo-changelog")
.tempdir()
.unwrap();
self::common::init_git(temp_dir.path());
- self::common::init_cargo(temp_dir.path(), "release_command_works_with_suffix");
+ self::common::init_cargo(
+ temp_dir.path(),
+ "generate_changelog_command_works_with_suffix",
+ );
self::common::init_cargo_changelog(temp_dir.path());
- self::common::cargo_changelog_new(temp_dir.path())
+ self::common::cargo_changelog_add(temp_dir.path())
.args([
"--format=toml",
"--set",
@@ -190,14 +196,14 @@ fn release_command_works_with_suffix() {
Command::cargo_bin("cargo-changelog")
.unwrap()
- .args(["generate", "custom", "0.1.0-alpha.1"])
+ .args(["create-release", "custom", "0.1.0-alpha.1"])
.current_dir(&temp_dir)
.assert()
.success();
Command::cargo_bin("cargo-changelog")
.unwrap()
- .args(["release"])
+ .args(["generate-changelog"])
.current_dir(&temp_dir)
.assert()
.success();
diff --git a/tests/verify_metadata_command.rs b/tests/verify_metadata_command.rs
index 3c728af..f760b29 100644
--- a/tests/verify_metadata_command.rs
+++ b/tests/verify_metadata_command.rs
@@ -28,7 +28,7 @@ fn verify_metadata_command_succeeds_with_empty_changelog() {
self::common::init_git(temp_dir.path());
self::common::init_cargo_changelog(temp_dir.path());
- self::common::cargo_changelog_new(temp_dir.path())
+ self::common::cargo_changelog_add(temp_dir.path())
.args([
"--format=toml",
"--set",