Skip to content

Commit f62ee6b

Browse files
chore(release): 0.38.0
1 parent af99155 commit f62ee6b

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,37 @@
11
# CHANGELOG
22

33

4+
## v0.38.0 (2026-03-02)
5+
6+
### Features
7+
8+
- Add workitem create-from-template command
9+
([#71](https://github.com/ni-kismet/systemlink-cli/pull/71),
10+
[`af99155`](https://github.com/ni-kismet/systemlink-cli/commit/af99155a0d1be778bb49c8cab43823b7e645a07c))
11+
12+
* feat: add workitem create-from-template command
13+
14+
- New command that fetches a work item template by ID and pre-fills name, type, description,
15+
workspace, and partNumber from it - All fields can be overridden via CLI options: --name, --state,
16+
--description, --assigned-to, --workflow-id, --workspace, --part-number - Supports --format table
17+
(default) and json - 5 unit tests covering: happy path, field overrides, template not found, JSON
18+
output, and partNumbers seeding - Updated README.md and SKILL.md with usage examples
19+
20+
* review: add readonly-mode and failed-items tests; fix fragile part-number test
21+
22+
423
## v0.37.2 (2026-03-02)
524

625
### Bug Fixes
726

827
- Workitem test failure
928
([`15fee1e`](https://github.com/ni-kismet/systemlink-cli/commit/15fee1e4e05948fe91d9ca5a975995403bd5ae1b))
1029

30+
### Chores
31+
32+
- **release**: 0.37.2
33+
([`43d0c30`](https://github.com/ni-kismet/systemlink-cli/commit/43d0c307f9c15a31aabf03ec2256e7e62ef61b20))
34+
1135

1236
## v0.37.1 (2026-03-02)
1337

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "slcli"
3-
version = "0.37.2"
3+
version = "0.38.0"
44
description = "SystemLink Integrator CLI - cross-platform CLI for SystemLink workflows and templates."
55
authors = ["Fred Visser <fred.visser@emerson.com>"]
66
include = ["dff-editor/**/*"]

slcli/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""Version information for slcli."""
22

33
# This file is auto-generated. Do not edit manually.
4-
__version__ = "0.37.2"
4+
__version__ = "0.38.0"

0 commit comments

Comments
 (0)