-
Notifications
You must be signed in to change notification settings - Fork 298
Expand file tree
/
Copy pathversion.go
More file actions
20 lines (16 loc) · 938 Bytes
/
version.go
File metadata and controls
20 lines (16 loc) · 938 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package internal
// Below are the metadata which will be embedded as part of headers in every RPC call made by this client to Temporal server.
// Update to the metadata below is typically done by the Temporal team as part of a major feature or behavior change.
const (
// SDKVersion is a semver (https://semver.org/) that represents the version of this Temporal GoSDK.
// Server validates if SDKVersion fits its supported range and rejects request if it doesn't.
//
// Exposed as: [go.temporal.io/sdk/temporal.SDKVersion]
SDKVersion = "1.43.0"
// SDKName represents the name of the SDK.
SDKName = clientNameHeaderValue
// SupportedServerVersions is a semver rages (https://github.com/blang/semver#ranges) of server versions that
// are supported by this Temporal SDK.
// Server validates if its version fits into SupportedServerVersions range and rejects request if it doesn't.
SupportedServerVersions = ">=1.0.0 <2.0.0"
)