diff --git a/detection_rules/ml.py b/detection_rules/ml.py index d4c2a5adc..c85fd9950 100644 --- a/detection_rules/ml.py +++ b/detection_rules/ml.py @@ -276,6 +276,10 @@ def get_ml_model_manifests_by_model_id(repo: str = 'elastic/detection-rules') -> @es_experimental.group('ml') def ml_group(): """Experimental machine learning commands.""" + click.secho('\n***** Deprecation Warning *****\n', fg='yellow', err=True) + click.secho('\n* The experiment "ml" command(s) are deprecated and will be removed in a future release. *\n', + fg='yellow', err=True) + click.secho('\n* Command Removal Timeframe: May 1, 2025 *\n', fg='yellow', err=True) @ml_group.command('check-files') diff --git a/pyproject.toml b/pyproject.toml index 3c509144f..962098d33 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "detection_rules" -version = "0.3.16" +version = "0.3.17" description = "Detection Rules is the home for rules used by Elastic Security. This repository is used for the development, maintenance, testing, validation, and release of rules for Elastic Security’s Detection Engine." readme = "README.md" requires-python = ">=3.12"