Skip to content

Commit

Permalink
chore: update change logs.
Browse files Browse the repository at this point in the history
Also fix a comment for the `Coercible` trait in `wdl-engine`.
  • Loading branch information
peterhuene committed Dec 27, 2024
1 parent f478e28 commit 56eba3f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
1 change: 1 addition & 0 deletions wdl-analysis/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

* Removed `Types` collection from `wdl-analysis` to simplify the API ([#277](https://github.com/stjude-rust-labs/wdl/pull/277)).
* Changed the `new` and `new_with_validator` methods of `Analyzer` to take the
diagnostics configuration rather than a rule iterator ([#274](https://github.com/stjude-rust-labs/wdl/pull/274)).
* Refactored the `AnalysisResult` and `Document` types to move properties of
Expand Down
1 change: 1 addition & 0 deletions wdl-engine/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

* Reduced size of the `Value` type ([#277](https://github.com/stjude-rust-labs/wdl/pull/277)).
* Implement task evaluation with local execution and remaining WDL 1.2
functionality ([#265](https://github.com/stjude-rust-labs/wdl/pull/265)).
* Implement the `defined` and `length` functions from the WDL standard library ([#258](https://github.com/stjude-rust-labs/wdl/pull/258)).
Expand Down
5 changes: 0 additions & 5 deletions wdl-engine/src/value.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,6 @@ pub trait Coercible: Sized {
/// Coerces the value into the given type.
///
/// Returns an error if the coercion is not supported.
///
/// # Panics
///
/// Panics if the provided target type is not from the given types
/// collection.
fn coerce(&self, target: &Type) -> Result<Self>;
}

Expand Down

0 comments on commit 56eba3f

Please sign in to comment.