Skip to content

Commit

Permalink
Bump version to v4.2.10.dev
Browse files Browse the repository at this point in the history
  • Loading branch information
funilrys committed Mar 27, 2024
1 parent 067dce2 commit 8b416d4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions PyFunceble/cli/entry_points/pyfunceble/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -1234,6 +1234,7 @@ def platform_parser(
add_arguments_to_parser(platform, args)
add_arguments_to_parser(platform, get_default_group_data())


def ask_authorization_to_merge_config(missing_key: Optional[str] = None) -> bool:
"""
Asks the end-user for the authorization to merge the upstream
Expand Down
6 changes: 3 additions & 3 deletions PyFunceble/cli/system/launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -685,9 +685,9 @@ def handle_file(protocol: dict) -> None:
"checker_type"
].upper()
protocol_data["subject_type"] = next_contract["subject_type"]
protocol_data["subject"] = protocol_data[
"idna_subject"
] = next_contract["subject"]["subject"]
protocol_data["subject"] = protocol_data["idna_subject"] = (
next_contract["subject"]["subject"]
)
protocol_data["contract"] = copy.deepcopy(next_contract)

self.tester_process_manager.add_to_input_queue(
Expand Down
2 changes: 1 addition & 1 deletion PyFunceble/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
from PyFunceble.storage_facility import get_config_directory

PROJECT_NAME: str = "PyFunceble"
PROJECT_VERSION: str = "4.2.9.dev (Blue Duckling: Ixora)"
PROJECT_VERSION: str = "4.2.10.dev (Blue Duckling: Ixora)"

DISTRIBUTED_CONFIGURATION_FILENAME: str = ".PyFunceble_production.yaml"
DISTRIBUTED_DIR_STRUCTURE_FILENAME: str = "dir_structure_production.json"
Expand Down
2 changes: 1 addition & 1 deletion version.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
current_version: '4.2.9.dev (Blue Duckling: Ixora)'
current_version: '4.2.10.dev (Blue Duckling: Ixora)'
deprecated:
- 3.0.21
- 3.1.20
Expand Down

0 comments on commit 8b416d4

Please sign in to comment.