Skip to content

Commit

Permalink
Release version 0.0.0.dev422
Browse files Browse the repository at this point in the history
  • Loading branch information
AAriam committed Dec 12, 2024
1 parent 795467e commit fcc9244
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 4 deletions.
4 changes: 2 additions & 2 deletions 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.dev421"
version = "0.0.0.dev422"
name = "ControlMan"
dependencies = [
"packaging >= 23.2, < 24",
Expand All @@ -30,7 +30,7 @@ dependencies = [
"PyLinks == 0.0.0.dev64",
"LoggerMan == 0.0.0.dev81",
"PySerials == 0.0.0.dev54",
"GitTidy == 0.0.0.dev78",
"GitTidy == 0.0.0.dev79",
"PkgData == 0.0.0.dev5",
"PyShellMan == 0.0.0.dev41",
"PySyntax == 0.0.0.dev5",
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Jinja2 >= 3, < 4
PyLinks == 0.0.0.dev64
LoggerMan == 0.0.0.dev81
PySerials == 0.0.0.dev54
GitTidy == 0.0.0.dev78
GitTidy == 0.0.0.dev79
PkgData == 0.0.0.dev5
PyShellMan == 0.0.0.dev41
PySyntax == 0.0.0.dev5
Expand Down
32 changes: 31 additions & 1 deletion src/controlman/_data/schema/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3176,7 +3176,7 @@ properties:
For example, if you choose `v` (so version tags are `v1.0.0`, `v1.0.1`, etc.),
then no other tags should start with `v`.
type: string
default: vers/
default: v
examples:
- version/
- ver/
Expand All @@ -3191,6 +3191,36 @@ properties:
examples:
- "Release {{ version }}"
- "v{{ version }}"
release:
description: |
Configurations for release tags.
Release tags are running tags that always point to the latest release
of a specific major version.
type: object
additionalProperties: false
required: [ prefix, message ]
properties:
prefix:
description: |
Prefix of release tags. You must choose a prefix that does not conflict with other tags.
For example, if you choose `r` (so tags are `r0.1`, `r1`, `r2`, etc.),
then no other tags should start with `r`.
type: string
default: r
examples:
- releases/
- rel/
- r-
- 'r '
message:
title: Message
description: |
Jinja template for the message of the release tag.
$ref: https://jsonschemata.repodynamics.com/string/oneline
default: "Latest release ({{ version }}) of major version {{ release }}."
examples:
- "Release {{ release }}"
- "r{{ release }}"
file:
type: object
additionalProperties: false
Expand Down

0 comments on commit fcc9244

Please sign in to comment.