commit f7128771fab84690fc85d51655630c903a8424fc
parent 3de5ab661cfca64054f0d1a3958b40fda325047a
Author: andrewlaack-collab <andrew.laack@imbue.com>
Date: Thu, 12 Feb 2026 23:06:35 +0000
Updated development messaging (#73)
* Updated development messaging
* Updated pyproject version
Diffstat:
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md
@@ -55,7 +55,7 @@ Vet is published to PyPI via the `publish-to-pypi.yml` GitHub Actions workflow.
2. Commit and push the change
3. Tag the commit and push the tag:
```bash
- git tag v0.2.0
+ 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
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.3
+ - run: pip install verify-everything==0.1.4
- 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.3"
+version = "0.1.4"
description = "LLM-based code review tool that finds issues tests and linters miss"
readme = "README.md"
license = "AGPL-3.0-only"