This is an automated email from the ASF dual-hosted git repository.

blankensteiner pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar-dotpulsar.git


The following commit(s) were added to refs/heads/master by this push:
     new c8aa933  Make ready for release 3.0.2
c8aa933 is described below

commit c8aa933be39288831768196d59ab780f3e36ea9d
Author: Daniel Blankensteiner <[email protected]>
AuthorDate: Tue Sep 19 12:07:30 2023 +0200

    Make ready for release 3.0.2
---
 CHANGELOG.md                         | 4 ++--
 src/DotPulsar/DotPulsar.csproj       | 2 +-
 tests/DotPulsar.Tests/ReaderTests.cs | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6f685ea..77b2114 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,11 +4,11 @@ All notable changes to this project will be documented in 
this file.
 
 The format is based on [Keep a 
Changelog](https://keepachangelog.com/en/1.1.0/) and this project adheres to 
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
 
-## [Unreleased]
+## [3.0.2] - 2023-09-19
 
 ### Fixed
 
-- When calling GetLastMessageId(s) on a SubReader code was still adding the 
topic unnecessarily
+- When calling GetLastMessageId(s) on a Reader the topic was still added when 
returning MessageId.Earliest
 
 ## [3.0.1] - 2023-09-15
 
diff --git a/src/DotPulsar/DotPulsar.csproj b/src/DotPulsar/DotPulsar.csproj
index 0e8fbd3..cfbde8c 100644
--- a/src/DotPulsar/DotPulsar.csproj
+++ b/src/DotPulsar/DotPulsar.csproj
@@ -2,7 +2,7 @@
 
   <PropertyGroup>
     
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net7.0</TargetFrameworks>
-    <Version>3.0.1</Version>
+    <Version>3.0.2</Version>
     <AssemblyVersion>$(Version)</AssemblyVersion>
     <FileVersion>$(Version)</FileVersion>
     <Authors>ApachePulsar,DanskeCommodities,dblank</Authors>
diff --git a/tests/DotPulsar.Tests/ReaderTests.cs 
b/tests/DotPulsar.Tests/ReaderTests.cs
index 91e164e..7d8fb43 100644
--- a/tests/DotPulsar.Tests/ReaderTests.cs
+++ b/tests/DotPulsar.Tests/ReaderTests.cs
@@ -237,7 +237,7 @@ public class ReaderTests
     }
 
     [Fact]
-    public async Task 
Receive_WhenFaultedAfterInvokingReceive_ShouldThrowConsumerFaultedException()
+    public async Task 
Receive_WhenFaultedAfterInvokingReceive_ShouldThrowReaderFaultedException()
     {
         //Arrange
         var semaphoreSlim = new SemaphoreSlim(1);
@@ -262,7 +262,7 @@ public class ReaderTests
     }
 
     [Fact]
-    public async Task 
Receive_WhenFaultedBeforeInvokingReceive_ShouldThrowConsumerFaultedException()
+    public async Task 
Receive_WhenFaultedBeforeInvokingReceive_ShouldThrowReaderFaultedException()
     {
         //Arrange
         await using var client = 
PulsarClient.Builder().ExceptionHandler(context =>

Reply via email to