Skip to content

Commit

Permalink
release: bumps wdl-grammar version to v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
a-frantz committed May 31, 2024
1 parent 2819dd3 commit 41e20c2
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions wdl-ast/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ ordered-float.workspace = true
pest.workspace = true
regex.workspace = true
tokio = { workspace = true, optional = true }
wdl-core = { path = "../wdl-core", version = "0.1.0" }
wdl-grammar = { path = "../wdl-grammar", version = "0.2.0" }
wdl-core = { path = "../wdl-core", version = "0.2.0" }
wdl-grammar = { path = "../wdl-grammar", version = "0.3.0" }
wdl-macros = { path = "../wdl-macros", version = "0.1.0" }

[features]
Expand Down
4 changes: 2 additions & 2 deletions wdl-gauntlet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ temp-dir = "0.1.13"
tokio.workspace = true
toml.workspace = true
wdl-ast = { path = "../wdl-ast", version = "0.1.0" }
wdl-core = { path = "../wdl-core", version = "0.1.0" }
wdl-grammar = { path = "../wdl-grammar", version = "0.2.0" }
wdl-core = { path = "../wdl-core", version = "0.2.0" }
wdl-grammar = { path = "../wdl-grammar", version = "0.3.0" }
2 changes: 1 addition & 1 deletion wdl-grammar/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ 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.3.0 - 5-31-2024

### Fixed

Expand Down
4 changes: 2 additions & 2 deletions wdl-grammar/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wdl-grammar"
version = "0.2.0"
version = "0.3.0"
authors = ["Clay McLeod <[email protected]>"]
edition.workspace = true
license.workspace = true
Expand All @@ -27,7 +27,7 @@ logos = { workspace = true }
miette = { workspace = true }
thiserror = { workspace = true }
rowan = { workspace = true }
wdl-core = { path = "../wdl-core", version = "0.1.0" }
wdl-core = { path = "../wdl-core", version = "0.2.0" }
wdl-macros = { path = "../wdl-macros", version = "0.1.0" }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions wdl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ readme = "../README.md"

[dependencies]
wdl-ast = { path = "../wdl-ast", version = "0.1.0", optional = true }
wdl-core = { path = "../wdl-core", version = "0.1.0", optional = true }
wdl-grammar = { path = "../wdl-grammar", version = "0.2.0", optional = true }
wdl-core = { path = "../wdl-core", version = "0.2.0", optional = true }
wdl-grammar = { path = "../wdl-grammar", version = "0.3.0", optional = true }

[features]
default = []
Expand Down

0 comments on commit 41e20c2

Please sign in to comment.