Skip to content

Commit

Permalink
release: bumps version to v0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
claymcleod committed Jan 16, 2024
1 parent 36ddaf9 commit cd7dd9f
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 11 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions packages/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 packages/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion packages/ccdi-openapi/src/api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ that some fields have been left out of the definitions for brevity.
name = "Childhood Cancer Data Initiative support email",
email = "[email protected]",
),
version = "v0.6.0",
version = "v0.6.1",
),
external_docs(
description = "Learn more about the Childhood Cancer Data Initiative",
Expand Down
2 changes: 1 addition & 1 deletion packages/ccdi-server/src/responses/info/api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions swagger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ info:
contact:
name: Childhood Cancer Data Initiative support email
email: [email protected]
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
Expand Down Expand Up @@ -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: |-
Expand Down

0 comments on commit cd7dd9f

Please sign in to comment.