Skip to content

Commit 05a3b72

Browse files
committed
Bump version to 1.1.3 across all implementations
- Update Python setup.py and pyproject.toml to version 1.1.3 - Update JavaScript package.json to version 1.1.3 - Update Go internal/version/version.go to version 1.1.3 - Fix TestRetryVerification timeout issue in Go implementation - All tests pass: Go (8/8 packages), Python (56/56), JavaScript (47/47) - All security scans pass: ruff and bandit show no issues
1 parent 95df4db commit 05a3b72

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

go/internal/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
package version
33

44
// Version is set at build time via ldflags
5-
var Version = "1.1.2"
5+
var Version = "1.1.3"
66

77
// GetVersion returns the current version string
88
func GetVersion() string {

javascript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "schemapin",
3-
"version": "1.1.2",
3+
"version": "1.1.3",
44
"description": "Cryptographic schema integrity verification for AI tools",
55
"main": "src/index.js",
66
"type": "module",

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "schemapin"
7-
version = "1.1.2"
7+
version = "1.1.3"
88
description = "Cryptographic schema integrity verification for AI tools"
99
readme = "README.md"
1010
license = {text = "MIT"}

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
setup(
1313
name="schemapin",
14-
version="1.1.2",
14+
version="1.1.3",
1515
author="ThirdKey",
1616
author_email="[email protected]",
1717
description="Cryptographic schema integrity verification for AI tools",

0 commit comments

Comments
 (0)