chore: bump version to 4.2.7

This commit is contained in:
russell@unturf.com 2026-01-23 04:27:31 -05:00
parent 8e6b3e58a3
commit 3360422575
11 changed files with 11 additions and 11 deletions

View file

@ -1 +1 @@
4.2.6 4.2.7

View file

@ -6013,7 +6013,7 @@ void print_usage(const char *prog) {
* ============================================================================ */ * ============================================================================ */
const char *unsandbox_version(void) { const char *unsandbox_version(void) {
return "4.2.5"; return "4.2.7";
} }
const char *unsandbox_detect_language(const char *filename) { const char *unsandbox_detect_language(const char *filename) {

View file

@ -72,7 +72,7 @@
* </ol> * </ol>
* *
* @author Permacomputer Project * @author Permacomputer Project
* @version 4.2.5 * @version 4.2.7
*/ */
import javax.crypto.Mac import javax.crypto.Mac

View file

@ -1,6 +1,6 @@
{ {
"name": "un-async", "name": "un-async",
"version": "4.2.5", "version": "4.2.7",
"description": "Unsandbox async JavaScript SDK - Execute code in 50+ languages", "description": "Unsandbox async JavaScript SDK - Execute code in 50+ languages",
"main": "src/un_async.js", "main": "src/un_async.js",
"type": "module", "type": "module",

View file

@ -15,7 +15,7 @@ local ltn12 = require("ltn12")
local Un = {} local Un = {}
Un.API_BASE = "https://api.unsandbox.com" Un.API_BASE = "https://api.unsandbox.com"
Un.VERSION = "4.2.5" Un.VERSION = "4.2.7"
-- Credential loading -- Credential loading
function Un.load_accounts_csv(path) function Un.load_accounts_csv(path)

View file

@ -47,7 +47,7 @@ use Digest::HMAC_SHA256 qw(hmac_sha256_hex);
use File::HomeDir; use File::HomeDir;
use Time::HiRes qw(time sleep); use Time::HiRes qw(time sleep);
our $VERSION = "4.2.5"; our $VERSION = "4.2.7";
our $API_BASE = 'https://api.unsandbox.com'; our $API_BASE = 'https://api.unsandbox.com';
# Credential system # Credential system

View file

@ -7,7 +7,7 @@ from setuptools import setup, find_packages
setup( setup(
name="unsandbox-async", name="unsandbox-async",
version="4.2.5", version="4.2.7",
description="Asynchronous Python SDK for unsandbox.com code execution", 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", long_description=open("README.md").read() if False else "Async Python SDK for unsandbox code execution",
author="unsandbox.com", author="unsandbox.com",

View file

@ -7,7 +7,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
setup( setup(
name="unsandbox", name="unsandbox",
version="4.2.5", version="4.2.7",
author="Unsandbox", author="Unsandbox",
description="Synchronous Python SDK for unsandbox.com code execution", description="Synchronous Python SDK for unsandbox.com code execution",
long_description=long_description, long_description=long_description,

View file

@ -27,7 +27,7 @@ from .un import (
CredentialsError, CredentialsError,
) )
__version__ = "4.2.5" __version__ = "4.2.7"
__all__ = [ __all__ = [
"execute_code", "execute_code",
"execute_async", "execute_async",

View file

@ -7,7 +7,7 @@
[package] [package]
name = "un-async" name = "un-async"
version = "4.2.5" version = "4.2.7"
edition = "2021" edition = "2021"
authors = ["unsandbox.com"] authors = ["unsandbox.com"]
description = "Asynchronous Rust SDK for unsandbox.com secure code execution API" description = "Asynchronous Rust SDK for unsandbox.com secure code execution API"

View file

@ -7,7 +7,7 @@
[package] [package]
name = "un-sync" name = "un-sync"
version = "4.2.5" version = "4.2.7"
edition = "2021" edition = "2021"
authors = ["unsandbox.com"] authors = ["unsandbox.com"]
description = "Synchronous Rust SDK for unsandbox.com secure code execution API" description = "Synchronous Rust SDK for unsandbox.com secure code execution API"