From d9bf626fbda83d0ab521189b581af4ad177600ad Mon Sep 17 00:00:00 2001 From: Peter Huene Date: Thu, 16 Jan 2025 18:55:07 -0500 Subject: [PATCH] chore: update CHANGELOGs. --- wdl-analysis/CHANGELOG.md | 1 + wdl-ast/CHANGELOG.md | 1 + wdl-engine/CHANGELOG.md | 1 + wdl-grammar/CHANGELOG.md | 4 ++++ 4 files changed, 7 insertions(+) diff --git a/wdl-analysis/CHANGELOG.md b/wdl-analysis/CHANGELOG.md index 0b4e099be..51c43f131 100644 --- a/wdl-analysis/CHANGELOG.md +++ b/wdl-analysis/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +* Added analysis support for the WDL 1.2 `env` declaration modifier ([#296](https://github.com/stjude-rust-labs/wdl/pull/296)). * Fixed missing diagnostic for unknown local name when using the abbreviated syntax for specifying a call input ([#292](https://github.com/stjude-rust-labs/wdl/pull/292)) * Added functions for getting type information of task requirements and hints ([#241](https://github.com/stjude-rust-labs/wdl/pull/241)). diff --git a/wdl-ast/CHANGELOG.md b/wdl-ast/CHANGELOG.md index 97f6d567d..c502aee0b 100644 --- a/wdl-ast/CHANGELOG.md +++ b/wdl-ast/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +* Added AST support for the WDL 1.2 `env` declaration modifier ([#296](https://github.com/stjude-rust-labs/wdl/pull/296)). * Added `braced_scope_span` and `heredoc_scope_span` methods to `AstNodeExt` ([#292](https://github.com/stjude-rust-labs/wdl/pull/292)) * Added constants for the task variable fields, task requirement names, and task hint names ([#265](https://github.com/stjude-rust-labs/wdl/pull/265)). diff --git a/wdl-engine/CHANGELOG.md b/wdl-engine/CHANGELOG.md index 017a6eac9..1909e6589 100644 --- a/wdl-engine/CHANGELOG.md +++ b/wdl-engine/CHANGELOG.md @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +* Added evaluation support for the WDL 1.2 `env` declaration modifier ([#296](https://github.com/stjude-rust-labs/wdl/pull/296)). * Implemented workflow evaluation ([#292](https://github.com/stjude-rust-labs/wdl/pull/292)) * 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 diff --git a/wdl-grammar/CHANGELOG.md b/wdl-grammar/CHANGELOG.md index bed927f12..173a074e1 100644 --- a/wdl-grammar/CHANGELOG.md +++ b/wdl-grammar/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +### Added + +* Added parsing support for the WDL 1.2 `env` declaration modifier ([#296](https://github.com/stjude-rust-labs/wdl/pull/296)). + ### Changed * Made construction of a CST from a list of parser events public via the