vet

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 73dca16f3a0c67cb6bd41961c10315a84c7d9da8
parent b44071c37f5fb915bc3d140e1f890a8c76593f16
Author: andrewlaack-collab <andrew.laack@imbue.com>
Date:   Thu, 12 Feb 2026 23:14:59 +0000

Updated versions (#75)


Diffstat:
MDEVELOPMENT.md | 11++++++-----
MREADME.md | 2+-
Mpyproject.toml | 2+-
3 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md @@ -51,19 +51,20 @@ Vet is published to PyPI via the `publish-to-pypi.yml` GitHub Actions workflow. ### Releasing a new version -1. Update the version in `pyproject.toml` +1. Create and checkout a branch to bump the version +2. Update the version in `pyproject.toml` 3. Update the recommended GitHub action pinned version in the `README.md` ```yaml - run: pip install verify-everything==0.2.0 ``` -2. Commit and push the changes -3. Tag the commit and push the tag: +4. Commit and push the changes +5. Tag the commit and push the tag: ```bash git tag v0.2.0 -m "v0.2.0: Updated XYZ" git push origin v0.2.0 ``` -4. The `Publish to PyPI` workflow will automatically build and publish the package -5. Merge PR into main. +6. The `Publish to PyPI` workflow will automatically build and publish the package +7. Merge PR into main. ### Why pin the version in the README? diff --git a/README.md b/README.md @@ -90,7 +90,7 @@ jobs: - uses: actions/setup-python@v5 with: python-version: "3.11" - - run: pip install verify-everything==0.1.5 + - run: pip install verify-everything==0.1.6 - name: Run vet if: github.event.pull_request.head.repo.full_name == github.repository env: diff --git a/pyproject.toml b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "verify-everything" -version = "0.1.5" +version = "0.1.6" description = "LLM-based code review tool that finds issues tests and linters miss" readme = "README.md" license = "AGPL-3.0-only"