From c1f3afc4be1dae2b4c813a637e4529dbce881417 Mon Sep 17 00:00:00 2001 From: Ben Olden-Cooligan Date: Fri, 29 Dec 2023 09:33:18 -0800 Subject: [PATCH] Bump version to 3.0.0 --- CHANGELOG.md | 10 ++++++++++ GrpcDotNetNamedPipes/GrpcDotNetNamedPipes.csproj | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b194d1f..f4b8598 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 3.0.0 +- Potential breaking changes: + - Async calls are now fully async (they used to block until the pipe was connected) + - Using a single NamedPipeChannel object is now recommended for parallel calls +- Fix an issue where heavily multi-threaded calls can stall on Windows +- Use custom retry logic for pipe connections for more reliable connections +- Fix a small memory leak +- Fix trailers not being included in responses with errors +- Fix invalid connections staying open forever + ## 2.1.1 - Improve connection reliability in some cases - Update dependency versions diff --git a/GrpcDotNetNamedPipes/GrpcDotNetNamedPipes.csproj b/GrpcDotNetNamedPipes/GrpcDotNetNamedPipes.csproj index e59dfaf..522c3bf 100644 --- a/GrpcDotNetNamedPipes/GrpcDotNetNamedPipes.csproj +++ b/GrpcDotNetNamedPipes/GrpcDotNetNamedPipes.csproj @@ -5,8 +5,8 @@ 11 true - 2.1.1 - 2.1.1 + 3.0.0 + 3.0.0 2.0.0.0 Ben Olden-Cooligan