Compare commits

..

2 commits

Author SHA256 Message Date
c006dea8c8 bump: version 0.1.0a4 → 0.1.0a5 2026-01-21 08:58:59 +01:00
8506ec673b fix: update tests 2026-01-20 12:38:25 +01:00
18 changed files with 69 additions and 5 deletions

View file

@ -1,3 +1,9 @@
## 0.1.0a5 (2026-01-21)
### Fix
- update tests
## 0.1.0a4 (2025-12-30)
### Fix

View file

@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
[project]
name = "rougail.user_data_commandline"
version = "0.1.0a4"
version = "0.1.0a5"
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
readme = "README.md"
description = "Rougail user_data Bitwarden"

View file

@ -1,6 +1,6 @@
"""
Silique (https://www.silique.fr)
Copyright (C) 2025
Copyright (C) 2025-2026
This program is free software: you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as published by the

View file

@ -1,2 +1,2 @@
__version__ = "0.1.0a4"
__version__ = "0.1.0a5"

View file

@ -1,6 +1,6 @@
"""
Silique (https://www.silique.fr)
Copyright (C) 2025
Copyright (C) 2025-2026
This program is free software: you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as published by the

View file

@ -1,6 +1,6 @@
"""Internationalisation utilities
Silique (https://www.silique.fr)
Copyright (C) 2025
Copyright (C) 2025-2026
This program is free software: you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as published by the

View file

@ -0,0 +1,11 @@
{
"errors": [],
"warnings": [
[
"variable has property disabled, it will be ignored when loading from Commandline"
],
[
"family \"condition\" (a condition) has property disabled, so cannot access to \"variable\" (a variable), it will be ignored when loading from Commandline"
]
]
}

View file

@ -0,0 +1,8 @@
{
"errors": [],
"warnings": [
[
"family \"condition\" (a condition) has property disabled, so cannot access to \"variable\" (a variable), it will be ignored when loading from Commandline"
]
]
}

View file

@ -0,0 +1,5 @@
[
"--rougail.condition",
"--rougail.variable",
"string1"
]

View file

@ -0,0 +1,4 @@
[
"--rougail.variable",
"string1"
]

View file

@ -0,0 +1,4 @@
{
"errors": [],
"warnings": []
}

View file

@ -0,0 +1,4 @@
{
"errors": [],
"warnings": []
}

View file

@ -0,0 +1,6 @@
[
"--rougail.family1.var",
"string1",
"--rougail.family2.var",
"string1"
]

View file

@ -0,0 +1,6 @@
[
"--rougail.family1.var",
"string1",
"--rougail.family2.var",
"string1"
]

View file

@ -0,0 +1,4 @@
{
"rougail.family1.var": "string1",
"rougail.family2.var": "string1"
}

View file

@ -0,0 +1,4 @@
{
"rougail.family1.var": "string1",
"rougail.family2.var": "string1"
}