From 3d7bb39504ef4854cb88cdf50f99a4c9008709c5 Mon Sep 17 00:00:00 2001 From: retoor Date: Sat, 8 Nov 2025 03:29:21 +0100 Subject: [PATCH] maintenance: update project version to 1.39.0 maintenance: use venv for test execution docs: update changelog with release notes --- .gitea/workflows/test.yml | 6 +++--- CHANGELOG.md | 8 ++++++++ pyproject.toml | 2 +- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 67237dc..762364b 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -18,12 +18,12 @@ jobs: . venv/bin/activate - name: Install dependencies run: | - python -m pip install --upgrade pip - pip install -e ".[dev]" + venv/bin/python3 -m pip install --upgrade pip + venv/bin/python3 -m pip install -e ".[dev]" - name: Run tests with pytest run: | - pytest --cov=pr --cov-report=xml --cov-report=term-missing + venv/bin/pytest --cov=pr --cov-report=xml --cov-report=term-missing - name: Upload coverage to Codecov uses: codecov/codecov-action@v4 diff --git a/CHANGELOG.md b/CHANGELOG.md index 279b026..58cd229 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,6 +34,14 @@ + + +## Version 1.38.0 - 2025-11-08 + +Automated tests have been added to improve code quality. The project version has been updated to 1.38.0, and release notes are documented in the changelog. + +**Changes:** 3 files, 14 lines +**Languages:** Markdown (8 lines), TOML (2 lines), YAML (4 lines) ## Version 1.37.0 - 2025-11-08 diff --git a/pyproject.toml b/pyproject.toml index 2bb7329..67f0ebf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "rp" -version = "1.37.0" +version = "1.38.0" description = "R python edition. The ultimate autonomous AI CLI." readme = "README.md" requires-python = ">=3.10"