-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
25 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,19 @@ | ||
## 0.0.4 | ||
|
||
* Upgrade to automerge rust 0.5.1 | ||
* `Transaction` no longer has a generic parameter and the `HashAndPatches` | ||
version is gone. Instead call `Document.startTransaction(PatchLog)` to get | ||
patches created during the transaction. | ||
* Added `Document.startTransactionAt` to start a transaction at a given set of | ||
heads rather than the current heads of the document | ||
* All the `*ForPatches` methods have been removed and replaced with overloads | ||
which take a `PatchLog` as an argument. To obtain patches first call these | ||
various methods, passing in a `PatchLog` and then use `Document.makePatches` | ||
to turn the patch log into a list of patches. | ||
* Added `Document.diff` to obtain a list of patches representing the difference | ||
between two different sets of heads of the document. | ||
* Make `MapEntry` public | ||
|
||
## 0.0.3 | ||
|
||
* Added SyncState.isInSync |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,7 +72,7 @@ spotless { | |
} | ||
} | ||
|
||
project.version = "0.0.3" | ||
project.version = "0.0.4" | ||
|
||
repositories { | ||
mavenCentral() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters