diff --git a/Cargo.lock b/Cargo.lock index 51497a8..c0e0a72 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2013,7 +2013,7 @@ dependencies = [ [[package]] name = "sideko" -version = "0.10.0" +version = "0.10.1" dependencies = [ "anstyle", "bytes", @@ -2046,7 +2046,7 @@ dependencies = [ [[package]] name = "sideko-py" -version = "0.10.0" +version = "0.10.1" dependencies = [ "log", "pyo3", diff --git a/core/Cargo.toml b/core/Cargo.toml index 81ea67d..78d08d2 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sideko" -version = "0.10.0" +version = "0.10.1" edition = "2021" authors = [ "Elias Posen ", diff --git a/core/src/cmds/apis.rs b/core/src/cmds/apis.rs index 9ce6808..fc426b4 100644 --- a/core/src/cmds/apis.rs +++ b/core/src/cmds/apis.rs @@ -128,8 +128,8 @@ pub async fn create_new_api_project(params: &NewApiSpec, title: String) -> Resul ) })?; log::info!( - "Created API Project with id: {} with initial semantic version: {}", - api_project.id, + "Created API Project with name: {} and initial semantic version: {}", + api_project.name, first_version.version ); diff --git a/core/src/cmds/docs.rs b/core/src/cmds/docs.rs index 4873bc8..6dc976c 100644 --- a/core/src/cmds/docs.rs +++ b/core/src/cmds/docs.rs @@ -39,7 +39,7 @@ pub async fn handle_list_docs() -> Result<()> { table.add_row(row![b -> "Name", b -> "Preview URL", b -> "Production URL",]); for doc_project in &doc_projects { table.add_row(row![ - doc_project.id, + doc_project.name, doc_project.domains.preview.clone().unwrap_or_default(), doc_project .domains diff --git a/sideko-py/Cargo.toml b/sideko-py/Cargo.toml index 7823e9d..e3857fa 100644 --- a/sideko-py/Cargo.toml +++ b/sideko-py/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sideko-py" -version = "0.10.0" +version = "0.10.1" edition = "2021" authors = [ "Elias Posen ",