@manabrew/protocol 5.2.0 → 5.3.0
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 +4 -2
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -23,5 +23,7 @@ import type { Prompt, PromptInput, PromptOutput } from "@manabrew/protocol";
|
|
|
23
23
|
import { VERSION, PROTOCOL_VERSION } from "@manabrew/protocol";
|
|
24
24
|
```
|
|
25
25
|
|
|
26
|
-
`
|
|
27
|
-
|
|
26
|
+
`PROTOCOL_VERSION` is the integer wire version a client must report to a relay
|
|
27
|
+
to interoperate. It is the major of `manabrew-relay-protocol`, so it only moves
|
|
28
|
+
on a breaking wire change. `VERSION` is the version of the crate the bindings
|
|
29
|
+
were generated from; it is not the version of this package.
|
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "5.
|
|
1
|
+
export declare const VERSION = "5.5.0";
|
|
2
2
|
export declare const PROTOCOL_VERSION = 5;
|
package/dist/version.js
CHANGED
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.PROTOCOL_VERSION = exports.VERSION = void 0;
|
|
4
4
|
// AUTO-GENERATED by `cargo run -p manabrew-relay-protocol --bin gen-protocol`. Do not edit.
|
|
5
|
-
exports.VERSION = "5.
|
|
5
|
+
exports.VERSION = "5.5.0";
|
|
6
6
|
exports.PROTOCOL_VERSION = 5;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@manabrew/protocol",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.3.0",
|
|
4
4
|
"description": "TypeScript types for the Manabrew wire protocol — the engine↔client message contract for the Manabrew Magic: The Gathering client.",
|
|
5
5
|
"license": "AGPL-3.0-or-later",
|
|
6
6
|
"repository": {
|