Skip to content

Commit 0316cb9

Browse files
committed
Use a single number revision scheme
1 parent 4b9d4b2 commit 0316cb9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

RFCs/0002-pluggable-discovery.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Pluggable Discovery protocol (Version 1.0.0)
1+
# Pluggable Discovery protocol (Version 1)
22

33
## Overview
44

@@ -55,22 +55,22 @@ The syntax of the command is:
5555

5656
`HELLO <PROTOCOL_VERSION> "<USER_AGENT>"`
5757

58-
- `<PROTOCOL_VERSION>` is the maximum protocol version supported by the client/IDE (currently `1.0.0`)
58+
- `<PROTOCOL_VERSION>` is the maximum protocol version supported by the client/IDE (currently `1`)
5959

6060
- `<USER_AGENT>` is the name and version of the client (double-quotes `"` are not allowed)
6161

6262
some examples:
6363

64-
- `HELLO 1.0.0 "Arduino IDE 1.8.13"`
64+
- `HELLO 1 "Arduino IDE 1.8.13"`
6565

66-
- `HELLO 1.0.0 "arduino-cli 1.2.3"`
66+
- `HELLO 1 "arduino-cli 1.2.3"`
6767

6868
the response to the command is:
6969

7070
```JSON
7171
{
7272
"eventType": "hello",
73-
"protocolVersion": "1.0.0",
73+
"protocolVersion": "1",
7474
"message": "OK"
7575
}
7676
```

0 commit comments

Comments
 (0)