From 725ca42038954fe357addf2f7d61bee57aa93345 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20Jir=C3=A9nius?= Date: Wed, 3 Jul 2024 16:48:25 +0200 Subject: [PATCH] Prepare release v1.8.0 --- docs/CHANGELOG.md | 4 ++++ docs/res-client-protocol.md | 2 +- docs/res-protocol.md | 2 +- docs/res-service-protocol.md | 2 +- server/const.go | 4 ++-- server/version.go | 2 +- 6 files changed, 10 insertions(+), 6 deletions(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index d68d340..07ce55f 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -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. diff --git a/docs/res-client-protocol.md b/docs/res-client-protocol.md index 162a8c3..e4a8da5 100644 --- a/docs/res-client-protocol.md +++ b/docs/res-client-protocol.md @@ -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) diff --git a/docs/res-protocol.md b/docs/res-protocol.md index 96667db..c1a3eb9 100644 --- a/docs/res-protocol.md +++ b/docs/res-protocol.md @@ -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) diff --git a/docs/res-service-protocol.md b/docs/res-service-protocol.md index 43b69b6..222a9b6 100644 --- a/docs/res-service-protocol.md +++ b/docs/res-service-protocol.md @@ -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) diff --git a/server/const.go b/server/const.go index 705746e..ed5c3bd 100644 --- a/server/const.go +++ b/server/const.go @@ -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" diff --git a/server/version.go b/server/version.go index d338fd5..19ddb50 100644 --- a/server/version.go +++ b/server/version.go @@ -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 )