Skip to content

Commit 4e53aad

Browse files
github-actions[bot]mwiebe
authored andcommitted
chore: release
Signed-off-by: Mark <399551+mwiebe@users.noreply.github.com>
1 parent a9acefa commit 4e53aad

8 files changed

Lines changed: 41 additions & 10 deletions

File tree

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/openjd-cli/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this crate are documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
## [0.1.3](https://github.com/OpenJobDescription/openjd-rs/compare/openjd-cli-v0.1.2...openjd-cli-v0.1.3) - 2026-05-25
8+
9+
### Refactor
10+
11+
- Make `template` a public module with typed parameter definitions
12+
13+
714
## [0.1.2](https://github.com/OpenJobDescription/openjd-rs/compare/openjd-cli-v0.1.1...openjd-cli-v0.1.2) - 2026-05-20
815

916
### Miscellaneous

crates/openjd-cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openjd-cli"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
edition.workspace = true
55
license.workspace = true
66
rust-version.workspace = true
@@ -18,8 +18,8 @@ path = "src/main.rs"
1818

1919
[dependencies]
2020
openjd-expr = { path = "../openjd-expr", version = "0.1.1" }
21-
openjd-model = { path = "../openjd-model", version = "0.1.1" }
22-
openjd-sessions = { path = "../openjd-sessions", version = "0.2.1" }
21+
openjd-model = { path = "../openjd-model", version = "0.2.0" }
22+
openjd-sessions = { path = "../openjd-sessions", version = "0.2.2" }
2323
clap = { workspace = true }
2424
serde = { workspace = true }
2525
serde_json = { workspace = true }

crates/openjd-for-js/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ publish = false
1515
crate-type = ["cdylib", "rlib"]
1616

1717
[dependencies]
18-
openjd-model = { path = "../openjd-model", version = "0.1.1" }
18+
openjd-model = { path = "../openjd-model", version = "0.2.0" }
1919
openjd-expr = { path = "../openjd-expr", version = "0.1.1" }
2020
wasm-bindgen = "0.2"
2121
serde = { workspace = true }

crates/openjd-model/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,23 @@ All notable changes to this crate are documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
## [0.2.0](https://github.com/OpenJobDescription/openjd-rs/compare/openjd-model-v0.1.1...openjd-model-v0.2.0) - 2026-05-25
8+
9+
### Bug fixes
10+
11+
- Correct AssociationNode containment for nested expressions
12+
13+
14+
### Features
15+
16+
- Expose typed TaskParameterDefinition variants and userInterface types
17+
18+
19+
### Refactor
20+
21+
- Make `template` a public module with typed parameter definitions
22+
23+
724
## [0.1.1](https://github.com/OpenJobDescription/openjd-rs/compare/openjd-model-v0.1.0...openjd-model-v0.1.1) - 2026-05-20
825

926
### Features

crates/openjd-model/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openjd-model"
3-
version = "0.1.1"
3+
version = "0.2.0"
44
edition.workspace = true
55
license.workspace = true
66
rust-version.workspace = true

crates/openjd-sessions/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this crate are documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.2.2](https://github.com/OpenJobDescription/openjd-rs/compare/openjd-sessions-v0.2.1...openjd-sessions-v0.2.2) - 2026-05-25
9+
10+
### Refactor
11+
12+
- Make `template` a public module with typed parameter definitions
13+
14+
815
## [0.2.0](https://github.com/OpenJobDescription/openjd-rs/compare/openjd-sessions-v0.1.0...openjd-sessions-v0.2.0) - 2026-05-15
916

1017
### Bug fixes

crates/openjd-sessions/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openjd-sessions"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
edition.workspace = true
55
license.workspace = true
66
rust-version.workspace = true
@@ -26,7 +26,7 @@ test-utils = []
2626

2727
[dependencies]
2828
openjd-expr = { path = "../openjd-expr", version = "0.1.1" }
29-
openjd-model = { path = "../openjd-model", version = "0.1.1" }
29+
openjd-model = { path = "../openjd-model", version = "0.2.0" }
3030
regex = { workspace = true }
3131
serde = { workspace = true }
3232
serde_json = { workspace = true }

0 commit comments

Comments
 (0)