diff --git a/wdl/CHANGELOG.md b/wdl/CHANGELOG.md index 56c9f74e..13f3d507 100644 --- a/wdl/CHANGELOG.md +++ b/wdl/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Unreleased +## 0.5.0 - 06-28-2024 + +### Changed + +* Updated `wdl` crate dependencies ## 0.4.0 - 06-13-2024 diff --git a/wdl/Cargo.toml b/wdl/Cargo.toml index cc779c8a..8f0478f5 100644 --- a/wdl/Cargo.toml +++ b/wdl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wdl" -version = "0.4.0" +version = "0.5.0" authors = ["Clay McLeod "] license.workspace = true edition.workspace = true @@ -11,9 +11,9 @@ documentation = "https://docs.rs/wdl" readme = "../README.md" [dependencies] -wdl-grammar = { path = "../wdl-grammar", version = "0.4.0", optional = true } -wdl-ast = { path = "../wdl-ast", version = "0.3.0", optional = true } -wdl-lint = { path = "../wdl-lint", version = "0.2.0", optional = true } +wdl-grammar = { path = "../wdl-grammar", version = "0.5.0", optional = true } +wdl-ast = { path = "../wdl-ast", version = "0.4.0", optional = true } +wdl-lint = { path = "../wdl-lint", version = "0.3.0", optional = true } clap = { workspace = true, optional = true } anyhow = { workspace = true, optional = true } colored = { workspace = true, optional = true }