diff --git a/.github/workflows/build_executable.yml b/.github/workflows/build_executable.yml index 41cfa2ed..6ac7c439 100644 --- a/.github/workflows/build_executable.yml +++ b/.github/workflows/build_executable.yml @@ -5,6 +5,9 @@ on: push: branches: - main + pull_request: + branches: + - renovation permissions: contents: write diff --git a/.github/workflows/pre_release.yml b/.github/workflows/pre_release.yml index 9b665d73..5d736618 100644 --- a/.github/workflows/pre_release.yml +++ b/.github/workflows/pre_release.yml @@ -4,6 +4,7 @@ on: push: branches: - main + - renovation jobs: pre_release: diff --git a/.github/workflows/tests_full.yml b/.github/workflows/tests_full.yml index a9ddd4f6..83153cb4 100644 --- a/.github/workflows/tests_full.yml +++ b/.github/workflows/tests_full.yml @@ -4,6 +4,7 @@ on: pull_request: branches: - main + - renovation permissions: contents: read diff --git a/cycode/__init__.py b/cycode/__init__.py index 4ce71ef1..4afa59a0 100644 --- a/cycode/__init__.py +++ b/cycode/__init__.py @@ -1 +1 @@ -__version__ = '0.0.0' # DON'T TOUCH. Placeholder. Will be filled automatically on poetry build from Git Tag +__version__ = '3.0.0.rc1' # DON'T TOUCH. Placeholder. Will be filled automatically on poetry build from Git Tag diff --git a/pyproject.toml b/pyproject.toml index 755d8207..04f12d59 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cycode" -version = "0.0.0" # DON'T TOUCH. Placeholder. Will be filled automatically on poetry build from Git Tag +version = "3.0.0.rc1" # DON'T TOUCH. Placeholder. Will be filled automatically on poetry build from Git Tag description = "Boost security in your dev lifecycle via SAST, SCA, Secrets & IaC scanning." keywords=["secret-scan", "cycode", "devops", "token", "secret", "security", "cycode", "code"] authors = ["Cycode "] @@ -63,7 +63,7 @@ log_cli = true [tool.poetry-dynamic-versioning] # poetry self add "poetry-dynamic-versioning[plugin]" -enable = true +enable = false strict = true bump = true metadata = false