diff options
| author | Paul Buetow <paul@buetow.org> | 2021-11-02 08:11:40 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2021-11-02 08:11:40 +0200 |
| commit | 1ec88deea93047a9d1a366e032b2a54aa3cd362b (patch) | |
| tree | 465f30673aa097a2b369e7c3d2032b041ff4f8e6 /internal/protocol | |
| parent | 2e9ce81c47d45dd1f2c607df6e19bdfdc3bb3cc8 (diff) | |
Bugfix: Dealing correctly with files without newline characters, also add more tests
Diffstat (limited to 'internal/protocol')
| -rw-r--r-- | internal/protocol/protocol.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/protocol/protocol.go b/internal/protocol/protocol.go index d29706c..2a95a00 100644 --- a/internal/protocol/protocol.go +++ b/internal/protocol/protocol.go @@ -2,7 +2,7 @@ package protocol const ( // ProtocolCompat -ibility version - ProtocolCompat string = "4" + ProtocolCompat string = "5" // MessageDelimiter delimits separate messages. MessageDelimiter byte = '¬' // FieldDelimiter delimits messagefields. |
