Skip to content

Commit

Permalink
Merge tag 'v1.8.0' into develop
Browse files Browse the repository at this point in the history
Release v1.8.0 v1.8.0
  • Loading branch information
jirenius committed Jul 3, 2024
2 parents 8fb9dda + 6321828 commit 5d296cb
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All changes to the RES Protocol will be documented in this file.

## v1.2.3 [Resgate v1.8.0](compare/v1.7.0...v1.8.0) - 2024-07-03

* #251 Meta object for custom response headers.

## v1.2.2 [Resgate v1.7.0](compare/v1.6.0...v1.7.0) - 2020-06-15

* #202 Token ID.
Expand Down
2 changes: 1 addition & 1 deletion docs/res-client-protocol.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# The RES-Client Protocol Specification

*Version: [1.2.2](res-protocol-semver.md)*
*Version: [1.2.3](res-protocol-semver.md)*

## Table of contents
- [Introduction](#introduction)
Expand Down
2 changes: 1 addition & 1 deletion docs/res-protocol.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# RES Protocol

*Version: [1.2.2](res-protocol-semver.md)*
*Version: [1.2.3](res-protocol-semver.md)*

## Table of contents
- [Introduction](#introduction)
Expand Down
2 changes: 1 addition & 1 deletion docs/res-service-protocol.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# The RES-Service Protocol Specification

*Version: [1.2.2](res-protocol-semver.md)*
*Version: [1.2.3](res-protocol-semver.md)*

## Table of contents
- [Introduction](#introduction)
Expand Down
4 changes: 2 additions & 2 deletions server/const.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import "time"

const (
// Version is the current version for the server.
Version = "1.7.5"
Version = "1.8.0"

// ProtocolVersion is the implemented RES protocol version.
ProtocolVersion = "1.2.2"
ProtocolVersion = "1.2.3"

// DefaultAddr is the default host for client connections.
DefaultAddr = "0.0.0.0"
Expand Down
2 changes: 1 addition & 1 deletion server/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package server

// Protocol versions
const (
versionLatest = 1002002 // MAJOR * 1000000 + MINOR * 1000 + PATCH
versionLatest = 1002003 // MAJOR * 1000000 + MINOR * 1000 + PATCH
versionLegacy = 1001001
)

Expand Down

0 comments on commit 5d296cb

Please sign in to comment.