diff --git a/CHANGELOG.md b/CHANGELOG.md index 84fb65a..0399a0e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [v0.6.1] — 01-16-2024 + +### Changed + +* Corrects two issues with the v0.6.0 release + ([#51](https://github.com/CBIIT/ccdi-federation-api/pull/51)). + * Corrects the description of the sample metadata `tumor_tissue_morphology` to be specified as a + struct. Additionally, add the `icd_o_3` code as a named struct field so that it will be named in + the wiki. + * Adds the `age_at_vital_status` subject metadata to `get_field_descriptions()` so that it will be + included in the wiki page generation. + ## [v0.6.0] — 01-16-2024 ### Added @@ -89,7 +101,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Adds Pediatric Cancer Data Commons (PCDC) endpoint ([#10](https://github.com/CBIIT/ccdi-federation-api/pull/10)). * Rust tooling was added to the `packages` directory ([#14](https://github.com/CBIIT/ccdi-federation-api/pull/14)). -[Unreleased]: https://github.com/cbiit/ccdi-federation-api/compare/v0.6.0...HEAD +[Unreleased]: https://github.com/cbiit/ccdi-federation-api/compare/v0.6.1...HEAD +[v0.6.1]: https://github.com/cbiit/ccdi-federation-api/compare/v0.6.0...v0.6.1 [v0.6.0]: https://github.com/cbiit/ccdi-federation-api/compare/v0.5.0...v0.6.0 [v0.5.0]: https://github.com/cbiit/ccdi-federation-api/compare/v0.4.0...v0.5.0 [v0.4.0]: https://github.com/cbiit/ccdi-federation-api/compare/v0.3.0...v0.4.0 diff --git a/packages/Cargo.lock b/packages/Cargo.lock index f367f9a..462162d 100644 --- a/packages/Cargo.lock +++ b/packages/Cargo.lock @@ -403,7 +403,7 @@ dependencies = [ [[package]] name = "ccdi-cde" -version = "0.6.0" +version = "0.6.1" dependencies = [ "indexmap 2.0.2", "introspect", @@ -417,7 +417,7 @@ dependencies = [ [[package]] name = "ccdi-models" -version = "0.6.0" +version = "0.6.1" dependencies = [ "ccdi-cde", "chrono", @@ -438,7 +438,7 @@ dependencies = [ [[package]] name = "ccdi-openapi" -version = "0.6.0" +version = "0.6.1" dependencies = [ "ccdi-cde", "ccdi-models", @@ -448,7 +448,7 @@ dependencies = [ [[package]] name = "ccdi-server" -version = "0.6.0" +version = "0.6.1" dependencies = [ "actix-web", "ccdi-cde", @@ -472,7 +472,7 @@ dependencies = [ [[package]] name = "ccdi-spec" -version = "0.6.0" +version = "0.6.1" dependencies = [ "actix-web", "ccdi-cde", diff --git a/packages/Cargo.toml b/packages/Cargo.toml index 06d4fc9..d0c54ac 100644 --- a/packages/Cargo.toml +++ b/packages/Cargo.toml @@ -11,7 +11,7 @@ resolver = "2" [workspace.package] license = "MIT OR Apache-2.0" edition = "2021" -version = "0.6.0" +version = "0.6.1" [workspace.dependencies] actix-web = "4.4.0" diff --git a/packages/ccdi-openapi/src/api.rs b/packages/ccdi-openapi/src/api.rs index 33a10b5..48191a8 100644 --- a/packages/ccdi-openapi/src/api.rs +++ b/packages/ccdi-openapi/src/api.rs @@ -107,7 +107,7 @@ that some fields have been left out of the definitions for brevity. name = "Childhood Cancer Data Initiative support email", email = "NCIChildhoodCancerDataInitiative@mail.nih.gov", ), - version = "v0.6.0", + version = "v0.6.1", ), external_docs( description = "Learn more about the Childhood Cancer Data Initiative", diff --git a/packages/ccdi-server/src/responses/info/api.rs b/packages/ccdi-server/src/responses/info/api.rs index c9fae99..b1c36a0 100644 --- a/packages/ccdi-server/src/responses/info/api.rs +++ b/packages/ccdi-server/src/responses/info/api.rs @@ -10,7 +10,7 @@ use utoipa::ToSchema; #[schema(as = responses::info::api::Information)] pub struct Information { /// The version of the API that this server supports. - #[schema(example = "v0.6.0")] + #[schema(example = "v0.6.1")] api_version: String, /// A URL pointing to the latest version of the Swagger documentation. diff --git a/swagger.yml b/swagger.yml index 3fa87e2..6ae1b75 100644 --- a/swagger.yml +++ b/swagger.yml @@ -5,7 +5,7 @@ info: contact: name: Childhood Cancer Data Initiative support email email: NCIChildhoodCancerDataInitiative@mail.nih.gov - version: v0.6.0 + version: v0.6.1 servers: - url: https://ccdi.stjude.cloud/api/v0 description: St. Jude Children's Research Hospital CCDI API server @@ -2289,7 +2289,7 @@ components: api_version: type: string description: The version of the API that this server supports. - example: v0.6.0 + example: v0.6.1 documentation_url: type: string description: |-