Compare commits

..

No commits in common. "e65378436bd1f03812ad0d4f21f71fd12c85d87d" and "b2bd3a9dde5aeae80b653d23dba82db5cb203653" have entirely different histories.

2 changed files with 4 additions and 4 deletions

View file

@ -22,8 +22,8 @@ async fn main() -> Result<()> {
println!("{}", Changelog::build(&cfg)?); println!("{}", Changelog::build(&cfg)?);
} }
Commands::Release { .. } => { Commands::Release { .. } => {
let apis = init_servers(&cfg).await?; init_servers(&cfg).await?;
release(&cfg, &mut apis).await?; release(&cfg).await?;
} }
Commands::Publish { .. } => { Commands::Publish { .. } => {
publish(&cfg).await?; publish(&cfg).await?;

View file

@ -1,6 +1,6 @@
use crate::{config::Config, error::*, serverapi::ApiCollection}; use crate::{config::Config, error::*};
pub async fn release(cfg: &Config, apis: &mut ApiCollection) -> Result<()> { pub async fn release(cfg: &Config) -> Result<()> {
// TODO: git tag // TODO: git tag
// TODO: version bump // TODO: version bump
// TODO: version select interactive // TODO: version select interactive