From 81668a69dfce0871666123605d53fec6f330aaea Mon Sep 17 00:00:00 2001 From: Jake Shadle Date: Thu, 5 Oct 2023 09:25:31 +0200 Subject: [PATCH 1/3] Go back one release --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 851f52e..559de75 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ player-tracking = [] async-stream = "0.3" futures-util = "0.3" http = "0.2" -prost = "0.12" +prost = "0.11" time = { version = "0.3", default-features = false } [dependencies.tokio] @@ -34,7 +34,7 @@ default-features = false features = ["sync", "time"] [dependencies.tonic] -version = "0.10" +version = "0.9" default-features = false features = ["codegen", "transport", "prost"] From 4da09116bdea68dbdb70dd806785fb2d0f073867 Mon Sep 17 00:00:00 2001 From: Jake Shadle Date: Thu, 5 Oct 2023 09:26:28 +0200 Subject: [PATCH 2/3] Update CHANGELOG --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c838756..1f2094a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + ## [Unreleased] - ReleaseDate +### Changed +- [PR#21](https://github.com/EmbarkStudios/rymder/pull/21) updated `prost` and `tonic` to 0.11 and 0.9 respectively. + ## [0.6.1] - 2023-10-04 ### Changed - [PR#20](https://github.com/EmbarkStudios/rymder/pull/20) updated `prost` and `tonic` From b9fe371ee3e48c6aca61367eb1fdb398a1659db9 Mon Sep 17 00:00:00 2001 From: Jake Shadle Date: Thu, 5 Oct 2023 09:29:08 +0200 Subject: [PATCH 3/3] Fix deny --- deny.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/deny.toml b/deny.toml index 60d4a23..23fe78b 100644 --- a/deny.toml +++ b/deny.toml @@ -16,6 +16,8 @@ deny = [{ name = "openssl-sys" }] skip = [ # hyper uses an old version { name = "socket2", version = "=0.4.9" }, + # prost uses an old version + { name = "syn", version = "=1.0.109" }, ] [sources]