@restatedev/restate 0.9.2 → 1.0.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 +11 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -102,6 +102,17 @@ We know that your time is precious and, therefore, deeply value any effort to co
|
|
|
102
102
|
|
|
103
103
|
Check out our [development guidelines](/docs/dev/development-guidelines.md) and [tips for local development](/docs/dev/local-development.md) to get started.
|
|
104
104
|
|
|
105
|
+
## Versions
|
|
106
|
+
|
|
107
|
+
Restate follows [Semantic Versioning](https://semver.org/).
|
|
108
|
+
|
|
109
|
+
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
|
+
|
|
111
|
+
To check the compatibility with the SDKs, check the respective READMEs:
|
|
112
|
+
|
|
113
|
+
* [SDK-Java](https://github.com/restatedev/sdk-java/?tab=readme-ov-file#versions)
|
|
114
|
+
* [SDK-Typescript](https://github.com/restatedev/sdk-typescript/?tab=readme-ov-file#versions)
|
|
115
|
+
|
|
105
116
|
### Building Restate locally
|
|
106
117
|
|
|
107
118
|
In order to build Restate locally [follow the build instructions](https://github.com/restatedev/restate/blob/main/docs/dev/local-development.md#building-restate).
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@restatedev/restate",
|
|
3
3
|
"description": "The Restate CLI",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "1.0.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": "0.
|
|
33
|
-
"@restatedev/restate-linux-arm64": "0.
|
|
34
|
-
"@restatedev/restate-darwin-x64": "0.
|
|
35
|
-
"@restatedev/restate-darwin-arm64": "0.
|
|
32
|
+
"@restatedev/restate-linux-x64": "1.0.1",
|
|
33
|
+
"@restatedev/restate-linux-arm64": "1.0.1",
|
|
34
|
+
"@restatedev/restate-darwin-x64": "1.0.1",
|
|
35
|
+
"@restatedev/restate-darwin-arm64": "1.0.1"
|
|
36
36
|
}
|
|
37
37
|
}
|