From f6fdb8946ed3397e0d79a0ec2a052fd07429e843 Mon Sep 17 00:00:00 2001 From: Hunter Haugen Date: Thu, 23 Jul 2026 09:52:10 -0700 Subject: [PATCH 1/2] v2.13.8 --- pyproject.toml | 2 +- r/validmind/DESCRIPTION | 2 +- uv.lock | 2 +- validmind/__version__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 4c8bc6cbe..73c51066f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "validmind" -version = "2.13.7" +version = "2.13.8" description = "ValidMind Library" readme = "README.pypi.md" requires-python = ">=3.9,<3.15" diff --git a/r/validmind/DESCRIPTION b/r/validmind/DESCRIPTION index ada73751f..1db910001 100644 --- a/r/validmind/DESCRIPTION +++ b/r/validmind/DESCRIPTION @@ -1,7 +1,7 @@ Package: validmind Type: Package Title: Interface to the 'ValidMind' Platform -Version: 2.13.7 +Version: 2.13.8 Authors@R: c(person("Andres", "Rodriguez", role = c("aut", "cre","cph"), email = "andres@validmind.ai")) Maintainer: Andres Rodriguez diff --git a/uv.lock b/uv.lock index 1688bb619..b50bb23a8 100644 --- a/uv.lock +++ b/uv.lock @@ -11340,7 +11340,7 @@ wheels = [ [[package]] name = "validmind" -version = "2.13.7" +version = "2.13.8" source = { editable = "." } dependencies = [ { name = "aiohttp", extra = ["speedups"] }, diff --git a/validmind/__version__.py b/validmind/__version__.py index 800de89f9..1e69d24fe 100644 --- a/validmind/__version__.py +++ b/validmind/__version__.py @@ -1 +1 @@ -__version__ = "2.13.7" +__version__ = "2.13.8" From 63998bd22f3adbe293371aa68a776c2da6f0c1e0 Mon Sep 17 00:00:00 2001 From: Hunter Haugen Date: Thu, 23 Jul 2026 09:53:54 -0700 Subject: [PATCH 2/2] Make 'make version' sed portable across macOS and Linux BSD sed (macOS) requires 'sed -i ""' while GNU sed (Linux) rejects it; write to a temp file and mv into place so the target works on both. Co-Authored-By: Claude Opus 4.8 (1M context) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a52d9c4b5..4ae0f0eeb 100644 --- a/Makefile +++ b/Makefile @@ -67,7 +67,7 @@ version: @:$(call check_defined, tag, new semver version tag to use on pyproject.toml) @if echo "$(tag)" | grep -Eq '^(patch|minor|major)$$'; then uv version --bump $(tag); else uv version "$(tag)"; fi @echo "__version__ = \"$$(uv version --short)\"" > validmind/__version__.py - @sed -i '' 's/^Version: .*/Version: '"$$(uv version --short)"'/' r/validmind/DESCRIPTION + @sed 's/^Version: .*/Version: '"$$(uv version --short)"'/' r/validmind/DESCRIPTION > r/validmind/DESCRIPTION.tmp && mv r/validmind/DESCRIPTION.tmp r/validmind/DESCRIPTION @echo "Version updated to $$(uv version --short)" @echo "Commiting changes to pyproject.toml, __version__.py and r/validmind/DESCRIPTION with message: $$(uv version --short)" @git add pyproject.toml validmind/__version__.py r/validmind/DESCRIPTION