Skip to content

Commit

Permalink
release: bumps wdl-grammar version to v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
claymcleod committed Dec 17, 2023
1 parent 7bd1577 commit 5ff5f6a
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 3 deletions.
24 changes: 24 additions & 0 deletions wdl-grammar/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# Changelog

## 0.2.0 - 12-17-2023

### Added

* Adds lint to suggest replacing curly command blocks ([4ee030f]).
* Adds the `Pedantic` lint group ([bc17014]).

### Revisions

* Multiple revisions to the inner data model to support the introduction of the
`wdl-ast` crate ([e2436ce]).
* Clarifies that whitespace is undesired and not invalid ([457c383]).
* Increases visibility of `lint` and `validation` modules ([59543c3]).
* Adds a location, a body, and a fix suggestion to warnings ([335afaf]).
* Applies `s/message/subject/g` for lint rules ([6dce4a2]).

### Chores

* Normalizes crate description ([f19ce7e]).
* Updates formatting to `version = "Two"` ([f63c188]).
* Moves `tokio` to the workspace dependencies ([66da811]).
* Specifies the `dep:` prefix for the binary feature dependencies ([e0b2cb5]).
* Improves the binary crate documentation ([a995a89]).

## 0.1.0 — 11-22-2023

### Added
Expand Down
6 changes: 3 additions & 3 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.1.0"
version = "0.2.0"
authors = ["Clay McLeod <clay.l.mcleod@gmail.com>"]
edition.workspace = true
license.workspace = true
Expand All @@ -22,8 +22,8 @@ serde = { workspace = true, optional = true }
serde_with = { workspace = true, optional = true }
tokio = { workspace = true, optional = true }
toml = { workspace = true, optional = true }
wdl-core = { path = "../wdl-core" }
wdl-macros = { path = "../wdl-macros" }
wdl-core = { path = "../wdl-core", version = "0.1.0" }
wdl-macros = { path = "../wdl-macros", version = "0.1.0" }

[features]
binaries = [
Expand Down

0 comments on commit 5ff5f6a

Please sign in to comment.