diff --git a/VERSION b/VERSION index cc2fbe8..e91d9be 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.3.2 +4.3.3 diff --git a/clients/c/src/un.c b/clients/c/src/un.c index 7f67b6b..ec455b2 100644 --- a/clients/c/src/un.c +++ b/clients/c/src/un.c @@ -6838,7 +6838,7 @@ void print_usage(const char *prog) { * ============================================================================ */ const char *unsandbox_version(void) { - return "4.3.2"; + return "4.3.3"; } const char *unsandbox_detect_language(const char *filename) { diff --git a/clients/csharp/sync/src/Un.cs b/clients/csharp/sync/src/Un.cs index d0263e5..a473144 100644 --- a/clients/csharp/sync/src/Un.cs +++ b/clients/csharp/sync/src/Un.cs @@ -1368,7 +1368,7 @@ Key options: public static class Unsandbox { private const string API_BASE = "https://api.unsandbox.com"; - private const string VERSION = "4.3.2"; + private const string VERSION = "4.3.3"; private static string _lastError; /// Extension map for language detection diff --git a/clients/dotnet/async/src/Un.cs b/clients/dotnet/async/src/Un.cs index 51f5338..d088f16 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.3.2"; +const string VERSION = "4.3.3"; // ANSI colors const string BLUE = "\x1B[34m"; diff --git a/clients/dotnet/sync/src/Un.cs b/clients/dotnet/sync/src/Un.cs index 06927f4..81ea3ad 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.3.2"; +const string VERSION = "4.3.3"; // ANSI colors const string BLUE = "\x1B[34m"; diff --git a/clients/go/sync/src/un.go b/clients/go/sync/src/un.go index 71d9e6b..bb1dfc5 100644 --- a/clients/go/sync/src/un.go +++ b/clients/go/sync/src/un.go @@ -1638,7 +1638,7 @@ func LogsStream(creds *Credentials, source, grep string, callback LogCallback) e // ============================================================================ // SDKVersion is the version of this SDK. -const SDKVersion = "4.3.2" +const SDKVersion = "4.3.3" // HmacSign computes an HMAC-SHA256 signature for the given message using the secret key. // Returns the signature as a lowercase hex string. diff --git a/clients/groovy/sync/src/un.groovy b/clients/groovy/sync/src/un.groovy index 61c8e81..182322a 100644 --- a/clients/groovy/sync/src/un.groovy +++ b/clients/groovy/sync/src/un.groovy @@ -73,7 +73,7 @@ * * * @author Permacomputer Project - * @version 4.3.2 + * @version 4.3.3 */ import javax.crypto.Mac diff --git a/clients/javascript/async/package.json b/clients/javascript/async/package.json index 132b221..61d2848 100644 --- a/clients/javascript/async/package.json +++ b/clients/javascript/async/package.json @@ -1,6 +1,6 @@ { "name": "un-async", - "version": "4.3.2", + "version": "4.3.3", "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 b701954..bf48969 100644 --- a/clients/javascript/sync/package.json +++ b/clients/javascript/sync/package.json @@ -1,6 +1,6 @@ { "name": "un-sync", - "version": "4.3.2", + "version": "4.3.3", "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 fcdeba4..c3d5cb2 100644 --- a/clients/lua/sync/src/un.lua +++ b/clients/lua/sync/src/un.lua @@ -26,7 +26,7 @@ local mime = require("mime") local Un = {} Un.API_BASE = "https://api.unsandbox.com" Un.PORTAL_BASE = "https://unsandbox.com" -Un.VERSION = "4.3.2" +Un.VERSION = "4.3.3" Un.LAST_ERROR = "" -- Colors diff --git a/clients/perl/sync/src/un.pl b/clients/perl/sync/src/un.pl index 00fa2e6..8fe4ff4 100644 --- a/clients/perl/sync/src/un.pl +++ b/clients/perl/sync/src/un.pl @@ -38,7 +38,7 @@ use Time::HiRes qw(time sleep); package Un; -our $VERSION = "4.3.2"; +our $VERSION = "4.3.3"; our $API_BASE = 'https://api.unsandbox.com'; our $PORTAL_BASE = 'https://unsandbox.com'; diff --git a/clients/python/async/setup.py b/clients/python/async/setup.py index 3403b5a..319cb3e 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.3.2", + version="4.3.3", 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 5e855f8..f6cbef2 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.3.2", + version="4.3.3", 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 3cabf5c..0335f91 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.3.2" +__version__ = "4.3.3" __all__ = [ "execute_code", "execute_async", diff --git a/clients/rust/async/Cargo.toml b/clients/rust/async/Cargo.toml index 1ae8c05..b84f64a 100644 --- a/clients/rust/async/Cargo.toml +++ b/clients/rust/async/Cargo.toml @@ -7,7 +7,7 @@ [package] name = "un-async" -version = "4.3.2" +version = "4.3.3" 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 ea73a9b..6852d80 100644 --- a/clients/rust/sync/Cargo.toml +++ b/clients/rust/sync/Cargo.toml @@ -7,7 +7,7 @@ [package] name = "un-sync" -version = "4.3.2" +version = "4.3.3" edition = "2021" authors = ["unsandbox.com"] description = "Synchronous Rust SDK for unsandbox.com secure code execution API"