Skip to content

Commit

Permalink
Bump version to v4.2.5.dev
Browse files Browse the repository at this point in the history
  • Loading branch information
funilrys committed Dec 19, 2023
1 parent 957f41c commit 912acc7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion PyFunceble/checker/availability/extras/rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,9 @@ def __init__(self, status: Optional[AvailabilityCheckerStatus] = None) -> None:
r"\.tumblr\.com$": [(self.switch_to_down_if_status_code, 404)],
r"\.web\.app$": [(self.switch_to_down_if_status_code, 404)],
r"\.wix\.com$": [(self.switch_to_down_if_status_code, 404)],
r"^s3\.ap-south-1\.amazonaws\.com$": [(self.switch_to_down_if_status_code, 403)],
r"^s3\.ap-south-1\.amazonaws\.com$": [
(self.switch_to_down_if_status_code, 403)
],
r"^u\.pcloud\.com$": [(self.switch_to_down_if_status_code, 302)],
r"\.wordpress\.com$": [
(self.switch_to_down_if_status_code, 410),
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.4.dev (Blue Duckling: Ixora)"
PROJECT_VERSION: str = "4.2.5.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.4.dev (Blue Duckling: Ixora)'
current_version: '4.2.5.dev (Blue Duckling: Ixora)'
deprecated:
- 3.0.21
- 3.1.20
Expand Down

0 comments on commit 912acc7

Please sign in to comment.