@restatedev/restate 1.0.2 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -3
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -33,6 +33,9 @@ Restate supports the following SDKs:
|
|
|
33
33
|
|
|
34
34
|
* [Typescript](https://github.com/restatedev/sdk-typescript)
|
|
35
35
|
* [Java and Kotlin](https://github.com/restatedev/sdk-java)
|
|
36
|
+
* [Python](https://github.com/restatedev/sdk-python)
|
|
37
|
+
* [Go](https://github.com/restatedev/sdk-go)
|
|
38
|
+
* [Rust](https://github.com/restatedev/sdk-rust)
|
|
36
39
|
|
|
37
40
|
## Install
|
|
38
41
|
|
|
@@ -108,10 +111,13 @@ Restate follows [Semantic Versioning](https://semver.org/).
|
|
|
108
111
|
|
|
109
112
|
You can safely upgrade from a Restate `x.y` to `x.(y+1)` release without performing any manual data migration, as Restate performs an automatic data migration for you.
|
|
110
113
|
|
|
111
|
-
|
|
114
|
+
For SDK compatibility, refer to the supported version matrix in the respective READMEs:
|
|
112
115
|
|
|
113
|
-
* [SDK
|
|
114
|
-
* [SDK
|
|
116
|
+
* [Restate Java SDK](https://github.com/restatedev/sdk-java#versions)
|
|
117
|
+
* [Restate TypeScript SDK](https://github.com/restatedev/sdk-typescript#versions)
|
|
118
|
+
* [Restate Go SDK](https://github.com/restatedev/sdk-go#versions)
|
|
119
|
+
* [Restate Python SDK](https://github.com/restatedev/sdk-python#versions)
|
|
120
|
+
* [Restate Rust SDK](https://github.com/restatedev/sdk-rust#versions)
|
|
115
121
|
|
|
116
122
|
### Building Restate locally
|
|
117
123
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@restatedev/restate",
|
|
3
3
|
"description": "The Restate CLI",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.1.1",
|
|
5
5
|
"bin": "lib/index.js",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
"typescript": "^4.9.4"
|
|
30
30
|
},
|
|
31
31
|
"optionalDependencies": {
|
|
32
|
-
"@restatedev/restate-linux-x64": "1.
|
|
33
|
-
"@restatedev/restate-linux-arm64": "1.
|
|
34
|
-
"@restatedev/restate-darwin-x64": "1.
|
|
35
|
-
"@restatedev/restate-darwin-arm64": "1.
|
|
32
|
+
"@restatedev/restate-linux-x64": "1.1.1",
|
|
33
|
+
"@restatedev/restate-linux-arm64": "1.1.1",
|
|
34
|
+
"@restatedev/restate-darwin-x64": "1.1.1",
|
|
35
|
+
"@restatedev/restate-darwin-arm64": "1.1.1"
|
|
36
36
|
}
|
|
37
37
|
}
|