Skip to content

Commit 560dfbe

Browse files
authored
Merge pull request #150 from mkolt/2.3.0
Bump version to 2.3.0. What comes in 2.3.0 is new public interface ICheckpointPartitionProcessorFactory and corresponding ChangeFeedProcessorBuilder.WithCheckpointPartitionProcessorFactory method. New factory is extension of IPartitionProcessorFactory and its Create method, in addition to ILease and IChangeFeedObserver that are passed to IParitionProcessorFactory.Create, also takes ILeaseCheckpointer, so that it be used to create partition processor that can take advantage of built-in checkpointing mechanism.
2 parents eb55799 + b4b521c commit 560dfbe

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/DocumentDB.ChangeFeedProcessor/DocumentDB.ChangeFeedProcessor.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<AssemblyName>Microsoft.Azure.Documents.ChangeFeedProcessor</AssemblyName>
2222

2323
<PackageId>Microsoft.Azure.DocumentDB.ChangeFeedProcessor</PackageId>
24-
<PackageVersion>2.2.8</PackageVersion>
24+
<PackageVersion>2.3.0</PackageVersion>
2525
<Title>Microsoft Azure Cosmos DB Change Feed Processor library</Title>
2626
<Authors>Microsoft</Authors>
2727
<PackageLicenseUrl>http://go.microsoft.com/fwlink/?LinkID=509837</PackageLicenseUrl>
@@ -44,9 +44,9 @@
4444
<!--CS1587:XML comment is not placed on a valid language element
4545
LibLog files have misplaced comments, but we cannot touch them.-->
4646
<NoWarn>1587</NoWarn>
47-
<Version>2.2.8</Version>
48-
<AssemblyVersion>2.2.8.0</AssemblyVersion>
49-
<FileVersion>2.2.8.0</FileVersion>
47+
<Version>2.3.0</Version>
48+
<AssemblyVersion>2.3.0.0</AssemblyVersion>
49+
<FileVersion>2.3.0.0</FileVersion>
5050
<PackageReleaseNotes>The change log for this project is available at https://docs.microsoft.com/azure/cosmos-db/sql-api-sdk-dotnet-changefeed.
5151
</PackageReleaseNotes>
5252
</PropertyGroup>

src/DocumentDB.ChangeFeedProcessor/Utils/DocumentCollectionHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace Microsoft.Azure.Documents.ChangeFeedProcessor.Utils
1010

1111
internal static class DocumentCollectionHelper
1212
{
13-
private const string DefaultUserAgentSuffix = "changefeed-2.2.8";
13+
private const string DefaultUserAgentSuffix = "changefeed-2.3.0";
1414

1515
public static DocumentCollectionInfo Canonicalize(this DocumentCollectionInfo collectionInfo)
1616
{

0 commit comments

Comments
 (0)