pub fn internal_prepare(
    _output: impl Write,
    manifest_path: Option<&Path>,
    next_release_version: String
) -> Result<()>
Examples found in repository?
src/lib.rs (line 229)
224
225
226
227
228
229
230
pub fn prepare(
    output: impl Write,
    manifest_path: Option<&Path>,
    next_release_version: String,
) -> Result<()> {
    internal_prepare(output, manifest_path, next_release_version)
}