Compare commits

...

3 commits

Author SHA1 Message Date
a2ca13bcd6 bump: version 0.1.0a18 → 0.1.0a19 2025-10-10 08:15:07 +02:00
1683b6fd89 fix: update tests 2025-10-10 08:07:57 +02:00
7ea478e2b8 fix: tests 2025-10-05 21:28:22 +02:00
10 changed files with 111 additions and 5 deletions

View file

@ -1,3 +1,10 @@
## 0.1.0a19 (2025-10-10)
### Fix
- update tests
- tests
## 0.1.0a18 (2025-09-30) ## 0.1.0a18 (2025-09-30)
### Feat ### Feat

View file

@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
[project] [project]
name = "rougail.output_formatter" name = "rougail.output_formatter"
version = "0.1.0a18" version = "0.1.0a19"
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}] authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
readme = "README.md" readme = "README.md"
description = "Rougail output formatter" description = "Rougail output formatter"
@ -13,9 +13,6 @@ license = {file = "LICENSE"}
classifiers = [ classifiers = [
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)", "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Programming Language :: Python", "Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13", "Programming Language :: Python :: 3.13",

View file

@ -1 +1 @@
__version__ = "0.1.0a18" __version__ = "0.1.0a19"

View file

@ -0,0 +1,22 @@
%YAML 1.2
---
version: 1.1
condition: no # a conditional variable
variable1:
description: a first variable
disabled:
jinja: |-
{{ _.condition == "yes" }}
return_type: boolean
description: if condition is egal to "yes"
variable2:
description: a seconde variable
disabled:
jinja: |-
{{ _.condition != "yes" }}
return_type: boolean
description: if condition is not egal to "yes"
...

View file

@ -0,0 +1,11 @@
%YAML 1.2
---
version: 1.1
condition: true # a condition
variable:
description: a variable
disabled:
variable: _.condition
...

View file

@ -0,0 +1,14 @@
%YAML 1.2
---
version: 1.1
condition:
description: a condition
default: false
hidden: true
variable:
description: a variable
disabled:
variable: _.condition
...

View file

@ -0,0 +1,15 @@
%YAML 1.2
---
version: 1.1
condition:
description: a condition
default: false
disabled: true
variable:
description: a variable
disabled:
variable: _.condition
propertyerror: false
...

View file

@ -0,0 +1,11 @@
%YAML 1.2
---
version: 1.1
condition: false # a condition
variable:
description: a variable
disabled:
variable: _.condition
...

View file

@ -0,0 +1,14 @@
%YAML 1.2
---
version: 1.1
condition:
description: a condition
default: true
hidden: true
variable:
description: a variable
disabled:
variable: _.condition
...

View file

@ -0,0 +1,15 @@
%YAML 1.2
---
version: 1.1
condition:
description: a condition
default: true
disabled: true
variable:
description: a variable
disabled:
variable: _.condition
propertyerror: false
...