Skip to content

Commit

Permalink
Merge pull request #13 from Sideko-Inc/managed-sdk-v2-docs-name
Browse files Browse the repository at this point in the history
id -> name
  • Loading branch information
pk8189 authored Nov 6, 2024
2 parents cb8c3ee + 9da333a commit c640297
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sideko"
version = "0.10.0"
version = "0.10.1"
edition = "2021"
authors = [
"Elias Posen <[email protected]>",
Expand Down
4 changes: 2 additions & 2 deletions core/src/cmds/apis.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
);

Expand Down
2 changes: 1 addition & 1 deletion core/src/cmds/docs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion sideko-py/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sideko-py"
version = "0.10.0"
version = "0.10.1"
edition = "2021"
authors = [
"Elias Posen <[email protected]>",
Expand Down

0 comments on commit c640297

Please sign in to comment.