From 9677a8477ddce0a9005736ca123fe8017f09b921 Mon Sep 17 00:00:00 2001 From: Jeffrey Jones Date: Mon, 2 Jan 2023 10:33:01 +0900 Subject: [PATCH] Version bumpb to 0.7.0 --- CHANGELOG.md | 4 +++- Cargo.lock | 10 +++++----- Cargo.toml | 2 +- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e58ab3a9..a89efad0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,13 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.0] - 2023-01-02 + ### Fixed - Fixed error when retrieving mark panels (`WorldService.GetMarkPanels`) when the mark panel was created by a game master / JTAC, or when the player who created the mark panel left. `MarkPanel.initiator` is now optional. ([#156](https://github.com/DCS-gRPC/rust-server/issues/156)) - Fixed scale of blocking time percentage in stats logs. ### Added - Added `SimulationFps` event that is fired every second and contains simulation fps information since the last event (i.e. for the past ~1sec). -- Added `GetSessionId` API +- Added `GetSessionId` API which is refreshed every mission restart to allow clients to know if a new mission has started on client reconnect. - Added `GetDetectedTargets` API. Method follows the DCS implementation of controller's getDetectedTargets. Can optionally also return the unit or weapon objects tracked by the radar. - Added `orientation` and `velocity` to `Unit` object - Added `u`/`v` coordinates (offset from DCS map origin in meters) to `Position`s used in responses. To not require them in requests, all positions provided in requests got changed to a new `InputPosition` type (you'll have to update your requests, simply replace `Position` with `InputPosition` in them). diff --git a/Cargo.lock b/Cargo.lock index 661e7d68..2f70ca65 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -351,7 +351,7 @@ dependencies = [ [[package]] name = "dcs-grpc" -version = "0.6.0" +version = "0.7.0" dependencies = [ "dcs-grpc-srs", "dcs-grpc-stubs", @@ -376,7 +376,7 @@ dependencies = [ [[package]] name = "dcs-grpc-repl" -version = "0.6.0" +version = "0.7.0" dependencies = [ "clap", "dcs-grpc-stubs", @@ -388,7 +388,7 @@ dependencies = [ [[package]] name = "dcs-grpc-srs" -version = "0.6.0" +version = "0.7.0" dependencies = [ "base64", "byteorder", @@ -407,7 +407,7 @@ dependencies = [ [[package]] name = "dcs-grpc-stubs" -version = "0.6.0" +version = "0.7.0" dependencies = [ "prost", "prost-types", @@ -420,7 +420,7 @@ dependencies = [ [[package]] name = "dcs-grpc-tts" -version = "0.6.0" +version = "0.7.0" dependencies = [ "audiopus", "base64", diff --git a/Cargo.toml b/Cargo.toml index 7ebc6d4b..d2ded7f5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ members = [ ] [workspace.package] -version = "0.6.0" +version = "0.7.0" license = "AGPL-3.0-or-later" authors = ["Markus Ast "] rust-version = "1.64"