Skip to content

Commit 84f080c

Browse files
committed
updated readme
1 parent 6383f87 commit 84f080c

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

Changes.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
## version BIT.Data.Sync 1.0.1
2-
### GuidService
3-
- The Guid generation algorithm was rewritten; the old version was not sortable.
4-
- A test class was created in the BIT.Data.Sync.Tests project to test the Guid generation.
2+
### ISequenceService
3+
- Added new interface ISequenceService that is on charge or generating sequence numbers for delta entities
4+
- Added new EfSquenceService (ISequenceService implementation)
5+
- Added new MemorySquenceService (ISequenceService implementation)
6+
- Updated delta index comparison query to use strings instead of guids
57

68
## version BIT.Data.Sync 1.0.0
79
### BIT.Data.Sync

src/BIT.Data.Sync/SequenceServiceBase.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace BIT.Data.Sync
66
{
77
public abstract class SequenceServiceBase : ISequenceService
88
{
9-
//TODO use for marting the sequence length
9+
//TODO use formatting the sequence length
1010
protected string Placeholder = "D10";
1111
protected ISequencePrefixStrategy sequencePrefixStrategy;
1212
public SequenceServiceBase(ISequencePrefixStrategy sequencePrefixStrategy)

0 commit comments

Comments
 (0)