We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c4209c commit 422f4fbCopy full SHA for 422f4fb
MIGRATION_GUIDE.md
@@ -28,6 +28,14 @@ Acronyms used:
28
They now return `Iterator<...>`.
29
Data leading to `None` being returned in previous versions now return an iterator
30
that will end immediately.
31
+* `Deref` to `TableViews` was replaced with delegation because using `Deref`
32
+ to model inheritance is an anti-pattern.
33
+* `usize` to `SizeType` conversions are now fallible (*e.g.*, `TryFrom` replaces `From`).
34
+* The `TskitTypeAccess` trait was removed because it was a bad idea.
35
+ (It makes no sense to be generic over returning pointers to low-level tskit types.)
36
+ The functionality is replaced with `impl fn`s.
37
+* The names of all `Owned` tables are now `Owning`.
38
+* `MetadataError::RoundtripError` now requires `Send + Sync`.
39
40
## v0.11.0
41
0 commit comments