From 2648d4ccf96dbcc53af5a3a07a2507a75f6ccb9c Mon Sep 17 00:00:00 2001 From: "russell@unturf.com" Date: Sat, 24 Jan 2026 15:56:49 -0500 Subject: [PATCH] chore: bump version to 4.2.26 --- VERSION | 2 +- clients/c/src/un.c | 2 +- clients/dotnet/async/src/Un.cs | 2 +- clients/dotnet/sync/src/Un.cs | 2 +- clients/groovy/sync/src/un.groovy | 2 +- clients/javascript/async/package.json | 2 +- clients/javascript/sync/package.json | 2 +- clients/lua/sync/src/un.lua | 2 +- clients/perl/sync/src/un.pl | 2 +- clients/python/async/setup.py | 2 +- clients/python/sync/setup.py | 2 +- clients/python/sync/src/__init__.py | 2 +- clients/rust/async/Cargo.toml | 2 +- clients/rust/sync/Cargo.toml | 2 +- 14 files changed, 14 insertions(+), 14 deletions(-) diff --git a/VERSION b/VERSION index 1fe9977..3072ebf 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.2.25 +4.2.26 diff --git a/clients/c/src/un.c b/clients/c/src/un.c index 9dd4f0e..15c439e 100644 --- a/clients/c/src/un.c +++ b/clients/c/src/un.c @@ -6013,7 +6013,7 @@ void print_usage(const char *prog) { * ============================================================================ */ const char *unsandbox_version(void) { - return "4.2.25"; + return "4.2.26"; } const char *unsandbox_detect_language(const char *filename) { diff --git a/clients/dotnet/async/src/Un.cs b/clients/dotnet/async/src/Un.cs index 0a17a73..9e8a0d7 100644 --- a/clients/dotnet/async/src/Un.cs +++ b/clients/dotnet/async/src/Un.cs @@ -12,7 +12,7 @@ using System.Text.Json.Serialization; const string API_BASE = "https://api.unsandbox.com"; const string PORTAL_BASE = "https://unsandbox.com"; -const string VERSION = "4.2.25"; +const string VERSION = "4.2.26"; // ANSI colors const string BLUE = "\x1B[34m"; diff --git a/clients/dotnet/sync/src/Un.cs b/clients/dotnet/sync/src/Un.cs index 69c8755..2c1ac24 100644 --- a/clients/dotnet/sync/src/Un.cs +++ b/clients/dotnet/sync/src/Un.cs @@ -12,7 +12,7 @@ using System.Text.Json.Serialization; const string API_BASE = "https://api.unsandbox.com"; const string PORTAL_BASE = "https://unsandbox.com"; -const string VERSION = "4.2.25"; +const string VERSION = "4.2.26"; // ANSI colors const string BLUE = "\x1B[34m"; diff --git a/clients/groovy/sync/src/un.groovy b/clients/groovy/sync/src/un.groovy index 88f2cc3..eb90281 100644 --- a/clients/groovy/sync/src/un.groovy +++ b/clients/groovy/sync/src/un.groovy @@ -72,7 +72,7 @@ * * * @author Permacomputer Project - * @version 4.2.25 + * @version 4.2.26 */ import javax.crypto.Mac diff --git a/clients/javascript/async/package.json b/clients/javascript/async/package.json index e898ade..11109ba 100644 --- a/clients/javascript/async/package.json +++ b/clients/javascript/async/package.json @@ -1,6 +1,6 @@ { "name": "un-async", - "version": "4.2.25", + "version": "4.2.26", "description": "Unsandbox async JavaScript SDK - Execute code in 50+ languages", "main": "src/un_async.js", "type": "module", diff --git a/clients/javascript/sync/package.json b/clients/javascript/sync/package.json index 306d41a..e7de3cb 100644 --- a/clients/javascript/sync/package.json +++ b/clients/javascript/sync/package.json @@ -1,6 +1,6 @@ { "name": "un-sync", - "version": "4.2.25", + "version": "4.2.26", "description": "unsandbox.com JavaScript SDK (Isomorphic - Node.js + Browser)", "type": "module", "main": "src/un.js", diff --git a/clients/lua/sync/src/un.lua b/clients/lua/sync/src/un.lua index 144b71f..9dc44c1 100644 --- a/clients/lua/sync/src/un.lua +++ b/clients/lua/sync/src/un.lua @@ -15,7 +15,7 @@ local ltn12 = require("ltn12") local Un = {} Un.API_BASE = "https://api.unsandbox.com" -Un.VERSION = "4.2.25" +Un.VERSION = "4.2.26" -- Credential loading function Un.load_accounts_csv(path) diff --git a/clients/perl/sync/src/un.pl b/clients/perl/sync/src/un.pl index dee231c..27a81f4 100644 --- a/clients/perl/sync/src/un.pl +++ b/clients/perl/sync/src/un.pl @@ -47,7 +47,7 @@ use Digest::HMAC_SHA256 qw(hmac_sha256_hex); use File::HomeDir; use Time::HiRes qw(time sleep); -our $VERSION = "4.2.25"; +our $VERSION = "4.2.26"; our $API_BASE = 'https://api.unsandbox.com'; # Credential system diff --git a/clients/python/async/setup.py b/clients/python/async/setup.py index 0ab4c5b..12e8667 100644 --- a/clients/python/async/setup.py +++ b/clients/python/async/setup.py @@ -7,7 +7,7 @@ from setuptools import setup, find_packages setup( name="unsandbox-async", - version="4.2.25", + version="4.2.26", description="Asynchronous Python SDK for unsandbox.com code execution", long_description=open("README.md").read() if False else "Async Python SDK for unsandbox code execution", author="unsandbox.com", diff --git a/clients/python/sync/setup.py b/clients/python/sync/setup.py index 13b41c9..b36bba1 100644 --- a/clients/python/sync/setup.py +++ b/clients/python/sync/setup.py @@ -7,7 +7,7 @@ with open("README.md", "r", encoding="utf-8") as fh: setup( name="unsandbox", - version="4.2.25", + version="4.2.26", author="Unsandbox", description="Synchronous Python SDK for unsandbox.com code execution", long_description=long_description, diff --git a/clients/python/sync/src/__init__.py b/clients/python/sync/src/__init__.py index 661cbf6..62e0d95 100644 --- a/clients/python/sync/src/__init__.py +++ b/clients/python/sync/src/__init__.py @@ -27,7 +27,7 @@ from .un import ( CredentialsError, ) -__version__ = "4.2.25" +__version__ = "4.2.26" __all__ = [ "execute_code", "execute_async", diff --git a/clients/rust/async/Cargo.toml b/clients/rust/async/Cargo.toml index 13d8a35..2a00a9e 100644 --- a/clients/rust/async/Cargo.toml +++ b/clients/rust/async/Cargo.toml @@ -7,7 +7,7 @@ [package] name = "un-async" -version = "4.2.25" +version = "4.2.26" edition = "2021" authors = ["unsandbox.com"] description = "Asynchronous Rust SDK for unsandbox.com secure code execution API" diff --git a/clients/rust/sync/Cargo.toml b/clients/rust/sync/Cargo.toml index 98b9e56..5475a44 100644 --- a/clients/rust/sync/Cargo.toml +++ b/clients/rust/sync/Cargo.toml @@ -7,7 +7,7 @@ [package] name = "un-sync" -version = "4.2.25" +version = "4.2.26" edition = "2021" authors = ["unsandbox.com"] description = "Synchronous Rust SDK for unsandbox.com secure code execution API"