Versioning
SDK Versioning
Silent Witness SDKs follow semantic versioning (MAJOR.MINOR.PATCH) to ensure backward compatibility and clear evolution.
Current Versions
🔷
Go SDK
v1.0.0
📜
TypeScript SDK
^1.0.0
Semantic Versioning
Version Format: MAJOR.MINOR.PATCH
- MAJOR (e.g.,
1.0.0→2.0.0): Breaking changes that require code updates - MINOR (e.g.,
1.0.0→1.1.0): New features that are backward compatible - PATCH (e.g.,
1.0.0→1.0.1): Bug fixes and improvements
Installation
- Go
- TypeScript
# Install specific version
go get github.com/silentwitness/go-sdk@v1.0.0
# Install latest v1.x.x
go get github.com/silentwitness/go-sdk@v1
# Install specific version
npm install @silentwitness/typescript-sdk@1.0.0
# Install latest compatible version
npm install @silentwitness/typescript-sdk@^1.0.0