diff --git a/.cookiecutter.json b/.cookiecutter.json index bce3151b..78908b58 100644 --- a/.cookiecutter.json +++ b/.cookiecutter.json @@ -1 +1 @@ -{"_copy_without_render":[".github/**/*.yaml",".github/**/*.jinja","docsrc/**/*.rst"],"_dev_requirements":{"bump2version":">=1.0.1","generate-changelog":">=0.7.6","git-fame":">=1.12.2","pip-tools":""},"_docs_requirements":{"Sphinx":">=4.3.0","furo":"","ghp-import":"","linkify-it-py":"","myst-parser":"","sphinx-autodoc-typehints":"","sphinx-click":"","sphinx-copybutton":""},"_prod_requirements":{"environs":">=9.3.5","rich-click":""},"_test_requirements":{"coverage":"~=6.1.2","poetry":"~=1.3.2","pre-commit":"~=2.15.0","pytest":"~=6.0.0","pytest-cov":"~=3.0.0"},"author":"Corey Oordt","email":"coreyoordt@gmail.com","friendly_name":"Bump My Version","github_user":"callowayproject","packaging_tool":"pip/setuptools","project_name":"bump-my-version","project_short_description":"Version bump your Python project","project_slug":"bump_version","version":"0.1.0"} \ No newline at end of file +{"_copy_without_render":[".github/**/*.yaml",".github/**/*.jinja","docsrc/**/*.rst"],"_dev_requirements":{"bump2version":">=1.0.1","generate-changelog":">=0.7.6","git-fame":">=1.12.2","pip-tools":""},"_docs_requirements":{"Sphinx":">=4.3.0","furo":"","ghp-import":"","linkify-it-py":"","myst-parser":"","sphinx-autodoc-typehints":"","sphinx-click":"","sphinx-copybutton":""},"_prod_requirements":{"environs":">=9.3.5","rich-click":""},"_test_requirements":{"coverage":"~=6.1.2","poetry":"~=1.3.2","pre-commit":"~=2.15.0","pytest":"~=6.0.0","pytest-cov":"~=3.0.0"},"author":"Corey Oordt","email":"coreyoordt@gmail.com","friendly_name":"Bump My Version","github_user":"callowayproject","packaging_tool":"pip/setuptools","project_name":"bump-my-version","project_short_description":"Version bump your Python project","project_slug":"bump_version","version":"0.1.0"} diff --git a/.secrets.baseline b/.secrets.baseline index bee178df..b5d19d32 100644 --- a/.secrets.baseline +++ b/.secrets.baseline @@ -75,10 +75,18 @@ { "path": "detect_secrets.filters.allowlist.is_line_allowlisted" }, + { + "path": "detect_secrets.filters.common.is_baseline_file", + "filename": ".secrets.baseline" + }, { "path": "detect_secrets.filters.common.is_ignored_due_to_verification_policies", "min_level": 2 }, + { + "path": "detect_secrets.filters.gibberish.should_exclude_secret", + "limit": 3.7 + }, { "path": "detect_secrets.filters.heuristic.is_indirect_reference" }, @@ -107,23 +115,6 @@ "path": "detect_secrets.filters.heuristic.is_templated_secret" } ], - "results": { - ".secrets.baseline": [ - { - "type": "Hex High Entropy String", - "filename": ".secrets.baseline", - "hashed_secret": "7c57cfdd241f019222b465b023af098ebd9007cd", - "is_verified": false, - "line_number": 115 - }, - { - "type": "Secret Keyword", - "filename": ".secrets.baseline", - "hashed_secret": "7c57cfdd241f019222b465b023af098ebd9007cd", - "is_verified": false, - "line_number": 115 - } - ] - }, - "generated_at": "2023-01-03T19:33:38Z" + "results": {}, + "generated_at": "2023-04-12T14:02:33Z" } diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c6d46f44..02d72f1a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -8,7 +8,7 @@ There are several ways to create your isolated environment. This is the default Run the following in a terminal: -``` +```console # Clone the repository git clone https://github.com/callowayproject/bump-my-version.git @@ -26,15 +26,15 @@ python -m pip install -r requirements/dev.txt ### Run tests Once setup, you should be able to run tests: -``` + +```console pytest ``` ## Install Pre-commit Hooks - Pre-commit hooks are scripts that run every time you make a commit. If any of the scripts fail, it stops the commit. You can see a listing of the checks in the ``.pre-commit-config.yaml`` file. -``` +```console pre-commit install ```