Skip to content

Commit

Permalink
Release version 0.0.0.dev334
Browse files Browse the repository at this point in the history
  • Loading branch information
AAriam committed Oct 22, 2024
1 parent 639749e commit 69e084a
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 32 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespaces = true
# ----------------------------------------- Project Metadata -------------------------------------
#
[project]
version = "0.0.0.dev333"
version = "0.0.0.dev334"
name = "ControlMan"
dependencies = [
"packaging >= 23.2, < 24",
Expand Down
48 changes: 17 additions & 31 deletions src/controlman/_data/schema/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2540,12 +2540,12 @@ properties:
default:
value: >-
| Date | Time | Actor | Description |
| Date | Time | Actor | Description |
| ---- | ---- | ----- | ----------- |
| ---------- | -------- | -------------------------------- | ----------------------------------------------------- |
template: |
{%- macro make_entry(actor, description) -%}
| {{ now.strftime("%Y.%m.%d") }} | {{ now.strftime("%H:%M:%S") }} | {{ actor }} | {{ description }} |
| {{ now.strftime("%Y.%m.%d") }} | {{ now.strftime("%H:%M:%S") }} | {{ actor | ljust(32) }} | {{ description | ljust(53) }} |
{%- endmacro -%}
{%- macro make_user(user) -%}
Expand Down Expand Up @@ -2684,33 +2684,19 @@ properties:
additionalProperties: false
default:
triage:
value: >-
- [ ] Triage
value: '\n - [ ] Triage'
planning:
value: >-
- [ ] Planning
value: '\n - [ ] Planning'
requirement_analysis:
value: >-
- [ ] Requirement Analysis
value: '\n - [ ] Requirement Analysis'
design:
value: >-
- [ ] Design
value: '\n - [ ] Design'
implementation:
value: >-
- [ ] Implementation
value: '\n - [ ] Implementation'
testing:
value: >-
- [ ] Testing
value: '\n - [ ] Testing'
deploy:
value: >-
- [ ] Deployment
value: '\n - [ ] Deployment'
properties:
triage:
$ref: https://controlman.repodynamics.com/schema/doc-protocol-data
Expand All @@ -2732,19 +2718,19 @@ properties:
description:
value: '**TBD**'
urd:
value: '{{ issue_body }}'
value: '\n{{ issue_body }}\n'
triage:
value: '**TBD**'
value: '\n**TBD**\n'
plan:
value: '**TBD**'
value: '\n**TBD**\n'
srs:
value: '**TBD**'
value: '\n**TBD**\n'
sdd:
value: '**TBD**'
value: '\n**TBD**\n'
testing:
value: '**TBD**'
value: '\n**TBD**\n'
deployment:
value: '**TBD**'
value: '\n**TBD**\n'
additionalProperties:
$ref: https://controlman.repodynamics.com/schema/doc-protocol-data
marker:
Expand Down

0 comments on commit 69e084a

Please sign in to comment.