├── .changelog-config.yaml ├── .composition.yaml ├── .cookiecutter.json ├── .dockerignore ├── .editorconfig ├── .github-write-test ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── actions │ ├── package-and-upload-artifacts │ │ └── action.yaml │ ├── release │ │ └── action.yaml │ └── setup-python-and-git │ │ └── action.yaml ├── changelog_templates │ ├── commit.md.jinja │ └── version_heading.md.jinja ├── dependabot.yml └── workflows │ ├── docs-final.yml │ ├── docs-preview.yml │ ├── release.yaml │ ├── test.yaml │ └── version-preview.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .secrets.baseline ├── CHANGELOG.md ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── action.yml ├── bumpversion ├── __init__.py ├── __main__.py ├── aliases.py ├── autocast.py ├── bump.py ├── cli.py ├── click_config.py ├── config │ ├── __init__.py │ ├── create.py │ ├── files.py │ ├── files_legacy.py │ ├── models.py │ └── utils.py ├── context.py ├── exceptions.py ├── files.py ├── hooks.py ├── indented_logger.py ├── scm │ ├── __init__.py │ ├── git.py │ ├── hg.py │ └── models.py ├── show.py ├── ui.py ├── utils.py ├── versioning │ ├── __init__.py │ ├── conventions.py │ ├── functions.py │ ├── models.py │ ├── serialization.py │ └── version_config.py ├── visualize.py └── yaml_dump.py ├── devenv.nix ├── devenv.yaml ├── docs ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── assets │ ├── bump-my-version-logo.afdesign │ ├── bump-my-version-logo.svg │ ├── bump-my-version-model.drawio │ ├── creating-a-version-spec.svg │ ├── creating-a-version.svg │ ├── css │ │ ├── cards.css │ │ ├── custom.css │ │ ├── field-list.css │ │ └── mkdocstrings.css │ ├── explanations.jpg │ ├── how-to.jpg │ ├── moving-tags.drawio │ ├── moving-tags.pdf │ ├── moving-tags.svg │ ├── reference.jpg │ ├── serializing-a-version-1-0-0.svg │ ├── serializing-a-version-1-2-0.svg │ ├── serializing-a-version-1-2-3.svg │ ├── serializing-a-version-1.svg │ └── tutorial.jpg ├── explanation │ ├── index.md │ ├── mental-model.md │ ├── show-subcommand.md │ └── version-parts.md ├── gen_doc_stubs.py ├── howtos │ ├── avoid-incorrect-replacements.md │ ├── calver.md │ ├── custom-version-formats-by-file.md │ ├── index.md │ ├── multiple-replacements.md │ ├── nav.md │ └── update-a-date.md ├── index.md ├── reference │ ├── calver_reference.md │ ├── cli.md │ ├── configuration │ │ ├── file.md │ │ ├── global.md │ │ ├── index.md │ │ └── version-component.md │ ├── formatting-context.md │ ├── hooks.md │ ├── index.md │ ├── movable-version-tags.md │ └── search-and-replace-config.md └── tutorials │ ├── getting-started.md │ ├── nav.md │ └── semantic-versioning-example.md ├── justfile ├── mkdocs.yml ├── overrides ├── mkdocstrings │ └── python │ │ └── material │ │ └── docstring │ │ ├── attributes.html.jinja │ │ ├── parameters.html.jinja │ │ ├── raises.html.jinja │ │ └── returns.html.jinja └── partials │ └── comments.html ├── pyproject.toml ├── tests ├── __init__.py ├── conftest.py ├── fixtures │ ├── basic_cfg.cfg │ ├── basic_cfg.toml │ ├── basic_cfg_expected.json │ ├── basic_cfg_expected.txt │ ├── basic_cfg_expected.yaml │ ├── basic_cfg_expected_full.json │ ├── basic_cfg_moveable.toml │ ├── csharp │ │ ├── .bumpversion.toml │ │ ├── AssemblyInfo.cs │ │ ├── FULL_VERSION.txt │ │ └── Version.csv │ ├── file_config_overrides.toml │ ├── glob │ │ ├── directory │ │ │ └── file3.txt │ │ ├── file1.txt │ │ ├── file2.txt │ │ └── not-text.md │ ├── interpolation │ │ ├── .bumpversion.cfg │ │ ├── pyproject.toml │ │ └── setup.cfg │ ├── legacy_multiline_search.cfg │ ├── legacy_multiline_search_comma.cfg │ ├── legacy_multiline_search_comma_expected.json │ ├── legacy_multiline_search_expected.json │ ├── partial_version_strings.toml │ ├── pep440.toml │ ├── regex_test_config.toml │ ├── regex_with_caret.yaml │ ├── regex_with_caret_config.toml │ └── replace-date-config.toml ├── test_autocast.py ├── test_bump.py ├── test_cli │ ├── __init__.py │ ├── test_base_cli.py │ ├── test_bump.py │ ├── test_replace.py │ ├── test_show.py │ ├── test_show_bump.py │ └── test_version_display.py ├── test_click_config.py ├── test_config │ ├── __init__.py │ ├── test_create.py │ ├── test_files.py │ ├── test_files_legacy.py │ ├── test_init.py │ └── test_utils.py ├── test_context.py ├── test_files.py ├── test_files_configuredfile.py ├── test_hooks │ ├── __init__.py │ ├── test_envs.py │ ├── test_run_command.py │ ├── test_run_hook_suites.py │ └── test_run_hooks.py ├── test_indented_logger.py ├── test_scm │ ├── __init__.py │ ├── test_git.py │ ├── test_hg.py │ ├── test_models.py │ └── test_models_scminfo.py ├── test_show.py ├── test_utils.py ├── test_versioning │ ├── __init__.py │ ├── test_conventions.py │ ├── test_functions.py │ ├── test_models_version.py │ ├── test_models_versioncomponent.py │ ├── test_models_versionspec.py │ ├── test_serialization.py │ └── test_version_config.py ├── test_visualize.py └── test_yaml.py ├── tools ├── bump.sh ├── create-release.sh ├── drawioexport.py ├── gen-codeowners.sh ├── generate-requirements.sh └── update_frontmatter.py └── uv.lock /.changelog-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/.changelog-config.yaml -------------------------------------------------------------------------------- /.composition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/.composition.yaml -------------------------------------------------------------------------------- /.cookiecutter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/.cookiecutter.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github-write-test: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/package-and-upload-artifacts/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/.github/actions/package-and-upload-artifacts/action.yaml -------------------------------------------------------------------------------- /.github/actions/release/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/.github/actions/release/action.yaml -------------------------------------------------------------------------------- /.github/actions/setup-python-and-git/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/.github/actions/setup-python-and-git/action.yaml -------------------------------------------------------------------------------- /.github/changelog_templates/commit.md.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/.github/changelog_templates/commit.md.jinja -------------------------------------------------------------------------------- /.github/changelog_templates/version_heading.md.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/.github/changelog_templates/version_heading.md.jinja -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/docs-final.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/.github/workflows/docs-final.yml -------------------------------------------------------------------------------- /.github/workflows/docs-preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/.github/workflows/docs-preview.yml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.github/workflows/version-preview.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/.github/workflows/version-preview.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.secrets.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/.secrets.baseline -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/action.yml -------------------------------------------------------------------------------- /bumpversion/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/bumpversion/__init__.py -------------------------------------------------------------------------------- /bumpversion/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/bumpversion/__main__.py -------------------------------------------------------------------------------- /bumpversion/aliases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/bumpversion/aliases.py -------------------------------------------------------------------------------- /bumpversion/autocast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/bumpversion/autocast.py -------------------------------------------------------------------------------- /bumpversion/bump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/bumpversion/bump.py -------------------------------------------------------------------------------- /bumpversion/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/bumpversion/cli.py -------------------------------------------------------------------------------- /bumpversion/click_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/bumpversion/click_config.py -------------------------------------------------------------------------------- /bumpversion/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/bumpversion/config/__init__.py -------------------------------------------------------------------------------- /bumpversion/config/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/bumpversion/config/create.py -------------------------------------------------------------------------------- /bumpversion/config/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/bumpversion/config/files.py -------------------------------------------------------------------------------- /bumpversion/config/files_legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/bumpversion/config/files_legacy.py -------------------------------------------------------------------------------- /bumpversion/config/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/bumpversion/config/models.py -------------------------------------------------------------------------------- /bumpversion/config/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/bumpversion/config/utils.py -------------------------------------------------------------------------------- /bumpversion/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/bumpversion/context.py -------------------------------------------------------------------------------- /bumpversion/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/bumpversion/exceptions.py -------------------------------------------------------------------------------- /bumpversion/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/bumpversion/files.py -------------------------------------------------------------------------------- /bumpversion/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/bumpversion/hooks.py -------------------------------------------------------------------------------- /bumpversion/indented_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/bumpversion/indented_logger.py -------------------------------------------------------------------------------- /bumpversion/scm/__init__.py: -------------------------------------------------------------------------------- 1 | """Source Code Management support.""" 2 | -------------------------------------------------------------------------------- /bumpversion/scm/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/bumpversion/scm/git.py -------------------------------------------------------------------------------- /bumpversion/scm/hg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/bumpversion/scm/hg.py -------------------------------------------------------------------------------- /bumpversion/scm/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/bumpversion/scm/models.py -------------------------------------------------------------------------------- /bumpversion/show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/bumpversion/show.py -------------------------------------------------------------------------------- /bumpversion/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/bumpversion/ui.py -------------------------------------------------------------------------------- /bumpversion/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/bumpversion/utils.py -------------------------------------------------------------------------------- /bumpversion/versioning/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/bumpversion/versioning/__init__.py -------------------------------------------------------------------------------- /bumpversion/versioning/conventions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/bumpversion/versioning/conventions.py -------------------------------------------------------------------------------- /bumpversion/versioning/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/bumpversion/versioning/functions.py -------------------------------------------------------------------------------- /bumpversion/versioning/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/bumpversion/versioning/models.py -------------------------------------------------------------------------------- /bumpversion/versioning/serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/bumpversion/versioning/serialization.py -------------------------------------------------------------------------------- /bumpversion/versioning/version_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/bumpversion/versioning/version_config.py -------------------------------------------------------------------------------- /bumpversion/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/bumpversion/visualize.py -------------------------------------------------------------------------------- /bumpversion/yaml_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/bumpversion/yaml_dump.py -------------------------------------------------------------------------------- /devenv.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/devenv.nix -------------------------------------------------------------------------------- /devenv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/devenv.yaml -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | --- 2 | comments: true 3 | title: "Changelog" 4 | --- 5 | 6 | {% include-markdown "../CHANGELOG.md" %} 7 | -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/LICENSE: -------------------------------------------------------------------------------- 1 | {% include-markdown "../LICENSE" %} 2 | -------------------------------------------------------------------------------- /docs/assets/bump-my-version-logo.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/assets/bump-my-version-logo.afdesign -------------------------------------------------------------------------------- /docs/assets/bump-my-version-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/assets/bump-my-version-logo.svg -------------------------------------------------------------------------------- /docs/assets/bump-my-version-model.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/assets/bump-my-version-model.drawio -------------------------------------------------------------------------------- /docs/assets/creating-a-version-spec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/assets/creating-a-version-spec.svg -------------------------------------------------------------------------------- /docs/assets/creating-a-version.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/assets/creating-a-version.svg -------------------------------------------------------------------------------- /docs/assets/css/cards.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/assets/css/cards.css -------------------------------------------------------------------------------- /docs/assets/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/assets/css/custom.css -------------------------------------------------------------------------------- /docs/assets/css/field-list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/assets/css/field-list.css -------------------------------------------------------------------------------- /docs/assets/css/mkdocstrings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/assets/css/mkdocstrings.css -------------------------------------------------------------------------------- /docs/assets/explanations.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/assets/explanations.jpg -------------------------------------------------------------------------------- /docs/assets/how-to.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/assets/how-to.jpg -------------------------------------------------------------------------------- /docs/assets/moving-tags.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/assets/moving-tags.drawio -------------------------------------------------------------------------------- /docs/assets/moving-tags.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/assets/moving-tags.pdf -------------------------------------------------------------------------------- /docs/assets/moving-tags.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/assets/moving-tags.svg -------------------------------------------------------------------------------- /docs/assets/reference.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/assets/reference.jpg -------------------------------------------------------------------------------- /docs/assets/serializing-a-version-1-0-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/assets/serializing-a-version-1-0-0.svg -------------------------------------------------------------------------------- /docs/assets/serializing-a-version-1-2-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/assets/serializing-a-version-1-2-0.svg -------------------------------------------------------------------------------- /docs/assets/serializing-a-version-1-2-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/assets/serializing-a-version-1-2-3.svg -------------------------------------------------------------------------------- /docs/assets/serializing-a-version-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/assets/serializing-a-version-1.svg -------------------------------------------------------------------------------- /docs/assets/tutorial.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/assets/tutorial.jpg -------------------------------------------------------------------------------- /docs/explanation/index.md: -------------------------------------------------------------------------------- 1 | - *.md 2 | -------------------------------------------------------------------------------- /docs/explanation/mental-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/explanation/mental-model.md -------------------------------------------------------------------------------- /docs/explanation/show-subcommand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/explanation/show-subcommand.md -------------------------------------------------------------------------------- /docs/explanation/version-parts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/explanation/version-parts.md -------------------------------------------------------------------------------- /docs/gen_doc_stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/gen_doc_stubs.py -------------------------------------------------------------------------------- /docs/howtos/avoid-incorrect-replacements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/howtos/avoid-incorrect-replacements.md -------------------------------------------------------------------------------- /docs/howtos/calver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/howtos/calver.md -------------------------------------------------------------------------------- /docs/howtos/custom-version-formats-by-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/howtos/custom-version-formats-by-file.md -------------------------------------------------------------------------------- /docs/howtos/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/howtos/index.md -------------------------------------------------------------------------------- /docs/howtos/multiple-replacements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/howtos/multiple-replacements.md -------------------------------------------------------------------------------- /docs/howtos/nav.md: -------------------------------------------------------------------------------- 1 | - *.md 2 | -------------------------------------------------------------------------------- /docs/howtos/update-a-date.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/howtos/update-a-date.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/reference/calver_reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/reference/calver_reference.md -------------------------------------------------------------------------------- /docs/reference/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/reference/cli.md -------------------------------------------------------------------------------- /docs/reference/configuration/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/reference/configuration/file.md -------------------------------------------------------------------------------- /docs/reference/configuration/global.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/reference/configuration/global.md -------------------------------------------------------------------------------- /docs/reference/configuration/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/reference/configuration/index.md -------------------------------------------------------------------------------- /docs/reference/configuration/version-component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/reference/configuration/version-component.md -------------------------------------------------------------------------------- /docs/reference/formatting-context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/reference/formatting-context.md -------------------------------------------------------------------------------- /docs/reference/hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/reference/hooks.md -------------------------------------------------------------------------------- /docs/reference/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/reference/index.md -------------------------------------------------------------------------------- /docs/reference/movable-version-tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/reference/movable-version-tags.md -------------------------------------------------------------------------------- /docs/reference/search-and-replace-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/reference/search-and-replace-config.md -------------------------------------------------------------------------------- /docs/tutorials/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/tutorials/getting-started.md -------------------------------------------------------------------------------- /docs/tutorials/nav.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/tutorials/nav.md -------------------------------------------------------------------------------- /docs/tutorials/semantic-versioning-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/docs/tutorials/semantic-versioning-example.md -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/justfile -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /overrides/mkdocstrings/python/material/docstring/attributes.html.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/overrides/mkdocstrings/python/material/docstring/attributes.html.jinja -------------------------------------------------------------------------------- /overrides/mkdocstrings/python/material/docstring/parameters.html.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/overrides/mkdocstrings/python/material/docstring/parameters.html.jinja -------------------------------------------------------------------------------- /overrides/mkdocstrings/python/material/docstring/raises.html.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/overrides/mkdocstrings/python/material/docstring/raises.html.jinja -------------------------------------------------------------------------------- /overrides/mkdocstrings/python/material/docstring/returns.html.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/overrides/mkdocstrings/python/material/docstring/returns.html.jinja -------------------------------------------------------------------------------- /overrides/partials/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/overrides/partials/comments.html -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Unit test package for bumpversion.""" 2 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/fixtures/basic_cfg.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/fixtures/basic_cfg.cfg -------------------------------------------------------------------------------- /tests/fixtures/basic_cfg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/fixtures/basic_cfg.toml -------------------------------------------------------------------------------- /tests/fixtures/basic_cfg_expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/fixtures/basic_cfg_expected.json -------------------------------------------------------------------------------- /tests/fixtures/basic_cfg_expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/fixtures/basic_cfg_expected.txt -------------------------------------------------------------------------------- /tests/fixtures/basic_cfg_expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/fixtures/basic_cfg_expected.yaml -------------------------------------------------------------------------------- /tests/fixtures/basic_cfg_expected_full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/fixtures/basic_cfg_expected_full.json -------------------------------------------------------------------------------- /tests/fixtures/basic_cfg_moveable.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/fixtures/basic_cfg_moveable.toml -------------------------------------------------------------------------------- /tests/fixtures/csharp/.bumpversion.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/fixtures/csharp/.bumpversion.toml -------------------------------------------------------------------------------- /tests/fixtures/csharp/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/fixtures/csharp/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/fixtures/csharp/FULL_VERSION.txt: -------------------------------------------------------------------------------- 1 | 3.1.0-rc+build.1031 2 | -------------------------------------------------------------------------------- /tests/fixtures/csharp/Version.csv: -------------------------------------------------------------------------------- 1 | 1;3;1;0;rc;build.1031 2 | -------------------------------------------------------------------------------- /tests/fixtures/file_config_overrides.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/fixtures/file_config_overrides.toml -------------------------------------------------------------------------------- /tests/fixtures/glob/directory/file3.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/glob/file1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/glob/file2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/glob/not-text.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/interpolation/.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/fixtures/interpolation/.bumpversion.cfg -------------------------------------------------------------------------------- /tests/fixtures/interpolation/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/fixtures/interpolation/pyproject.toml -------------------------------------------------------------------------------- /tests/fixtures/interpolation/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/fixtures/interpolation/setup.cfg -------------------------------------------------------------------------------- /tests/fixtures/legacy_multiline_search.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/fixtures/legacy_multiline_search.cfg -------------------------------------------------------------------------------- /tests/fixtures/legacy_multiline_search_comma.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/fixtures/legacy_multiline_search_comma.cfg -------------------------------------------------------------------------------- /tests/fixtures/legacy_multiline_search_comma_expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/fixtures/legacy_multiline_search_comma_expected.json -------------------------------------------------------------------------------- /tests/fixtures/legacy_multiline_search_expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/fixtures/legacy_multiline_search_expected.json -------------------------------------------------------------------------------- /tests/fixtures/partial_version_strings.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/fixtures/partial_version_strings.toml -------------------------------------------------------------------------------- /tests/fixtures/pep440.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/fixtures/pep440.toml -------------------------------------------------------------------------------- /tests/fixtures/regex_test_config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/fixtures/regex_test_config.toml -------------------------------------------------------------------------------- /tests/fixtures/regex_with_caret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/fixtures/regex_with_caret.yaml -------------------------------------------------------------------------------- /tests/fixtures/regex_with_caret_config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/fixtures/regex_with_caret_config.toml -------------------------------------------------------------------------------- /tests/fixtures/replace-date-config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/fixtures/replace-date-config.toml -------------------------------------------------------------------------------- /tests/test_autocast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_autocast.py -------------------------------------------------------------------------------- /tests/test_bump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_bump.py -------------------------------------------------------------------------------- /tests/test_cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_cli/test_base_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_cli/test_base_cli.py -------------------------------------------------------------------------------- /tests/test_cli/test_bump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_cli/test_bump.py -------------------------------------------------------------------------------- /tests/test_cli/test_replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_cli/test_replace.py -------------------------------------------------------------------------------- /tests/test_cli/test_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_cli/test_show.py -------------------------------------------------------------------------------- /tests/test_cli/test_show_bump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_cli/test_show_bump.py -------------------------------------------------------------------------------- /tests/test_cli/test_version_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_cli/test_version_display.py -------------------------------------------------------------------------------- /tests/test_click_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_click_config.py -------------------------------------------------------------------------------- /tests/test_config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_config/test_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_config/test_create.py -------------------------------------------------------------------------------- /tests/test_config/test_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_config/test_files.py -------------------------------------------------------------------------------- /tests/test_config/test_files_legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_config/test_files_legacy.py -------------------------------------------------------------------------------- /tests/test_config/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_config/test_init.py -------------------------------------------------------------------------------- /tests/test_config/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_config/test_utils.py -------------------------------------------------------------------------------- /tests/test_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_context.py -------------------------------------------------------------------------------- /tests/test_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_files.py -------------------------------------------------------------------------------- /tests/test_files_configuredfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_files_configuredfile.py -------------------------------------------------------------------------------- /tests/test_hooks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_hooks/test_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_hooks/test_envs.py -------------------------------------------------------------------------------- /tests/test_hooks/test_run_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_hooks/test_run_command.py -------------------------------------------------------------------------------- /tests/test_hooks/test_run_hook_suites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_hooks/test_run_hook_suites.py -------------------------------------------------------------------------------- /tests/test_hooks/test_run_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_hooks/test_run_hooks.py -------------------------------------------------------------------------------- /tests/test_indented_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_indented_logger.py -------------------------------------------------------------------------------- /tests/test_scm/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests of the SCM module.""" 2 | -------------------------------------------------------------------------------- /tests/test_scm/test_git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_scm/test_git.py -------------------------------------------------------------------------------- /tests/test_scm/test_hg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_scm/test_hg.py -------------------------------------------------------------------------------- /tests/test_scm/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_scm/test_models.py -------------------------------------------------------------------------------- /tests/test_scm/test_models_scminfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_scm/test_models_scminfo.py -------------------------------------------------------------------------------- /tests/test_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_show.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_versioning/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_versioning/test_conventions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_versioning/test_conventions.py -------------------------------------------------------------------------------- /tests/test_versioning/test_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_versioning/test_functions.py -------------------------------------------------------------------------------- /tests/test_versioning/test_models_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_versioning/test_models_version.py -------------------------------------------------------------------------------- /tests/test_versioning/test_models_versioncomponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_versioning/test_models_versioncomponent.py -------------------------------------------------------------------------------- /tests/test_versioning/test_models_versionspec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_versioning/test_models_versionspec.py -------------------------------------------------------------------------------- /tests/test_versioning/test_serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_versioning/test_serialization.py -------------------------------------------------------------------------------- /tests/test_versioning/test_version_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_versioning/test_version_config.py -------------------------------------------------------------------------------- /tests/test_visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_visualize.py -------------------------------------------------------------------------------- /tests/test_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tests/test_yaml.py -------------------------------------------------------------------------------- /tools/bump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tools/bump.sh -------------------------------------------------------------------------------- /tools/create-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tools/create-release.sh -------------------------------------------------------------------------------- /tools/drawioexport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tools/drawioexport.py -------------------------------------------------------------------------------- /tools/gen-codeowners.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tools/gen-codeowners.sh -------------------------------------------------------------------------------- /tools/generate-requirements.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tools/generate-requirements.sh -------------------------------------------------------------------------------- /tools/update_frontmatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/tools/update_frontmatter.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callowayproject/bump-my-version/HEAD/uv.lock --------------------------------------------------------------------------------