Compare commits
No commits in common. "main" and "1.0.0rc0" have entirely different histories.
4 changed files with 38 additions and 11 deletions
42
CHANGELOG.md
42
CHANGELOG.md
|
|
@ -1,21 +1,49 @@
|
||||||
## 1.0.0 (2026-06-21)
|
## 0.1.0a6 (2026-06-15)
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- values is a dict
|
||||||
|
|
||||||
|
## 0.1.0a5 (2026-05-04)
|
||||||
|
|
||||||
### Feat
|
### Feat
|
||||||
|
|
||||||
- multi layers
|
- multi layers
|
||||||
- add frozen variable support
|
|
||||||
- update for last rougail version
|
## 0.1.0a4 (2026-01-21)
|
||||||
- support of password type
|
|
||||||
|
|
||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
- rougail dependencies
|
|
||||||
- black
|
|
||||||
- values is a dict
|
|
||||||
- add loaded_from information
|
- add loaded_from information
|
||||||
|
|
||||||
|
## 0.1.0a3 (2025-12-30)
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
- update doc
|
- update doc
|
||||||
|
|
||||||
|
## 0.1.0a2 (2025-12-22)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- add frozen variable support
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
- do not force description format
|
- do not force description format
|
||||||
- update doc
|
- update doc
|
||||||
- refactoring
|
- refactoring
|
||||||
- update translation
|
- update translation
|
||||||
|
|
||||||
|
## 0.1.0a1 (2025-11-21)
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
- ExtentionError => ExtensionError
|
- ExtentionError => ExtensionError
|
||||||
|
|
||||||
|
## 0.1.0a0 (2025-11-06)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- update for last rougail version
|
||||||
|
- support of password type
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "rougail.user_data_questionary"
|
name = "rougail.user_data_questionary"
|
||||||
version = "1.0.0"
|
version = "1.0.0rc0"
|
||||||
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
description = "Rougail user_data questionary"
|
description = "Rougail user_data questionary"
|
||||||
|
|
@ -24,7 +24,7 @@ classifiers = [
|
||||||
|
|
||||||
]
|
]
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"rougail-base >= 1.2.0,<2",
|
"rougail-base >= 1.1,<2",
|
||||||
"questionary ~= 2.1.0",
|
"questionary ~= 2.1.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,4 +19,4 @@ along with this program; if not, write to the Free Software
|
||||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
"""
|
"""
|
||||||
|
|
||||||
__version__ = "1.0.0"
|
__version__ = "1.0.0rc0"
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,6 @@ from .i18n import _
|
||||||
|
|
||||||
class RougailUserDataQuestionary:
|
class RougailUserDataQuestionary:
|
||||||
"""Rougail userdata for Questionary"""
|
"""Rougail userdata for Questionary"""
|
||||||
|
|
||||||
interactive_user_data = True
|
interactive_user_data = True
|
||||||
|
|
||||||
def __init__(
|
def __init__(
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue