diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-19 09:26:03 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-19 09:26:03 +0000 |
commit | 9918693037dce8aa4bb6f08741b6812923486c18 (patch) | |
tree | 21d2b40bec7e6a7ea664acee056eb3d08e15a1cf /vendor/text-size/CHANGELOG.md | |
parent | Releasing progress-linux version 1.75.0+dfsg1-5~progress7.99u1. (diff) | |
download | rustc-9918693037dce8aa4bb6f08741b6812923486c18.tar.xz rustc-9918693037dce8aa4bb6f08741b6812923486c18.zip |
Merging upstream version 1.76.0+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/text-size/CHANGELOG.md')
-rw-r--r-- | vendor/text-size/CHANGELOG.md | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/vendor/text-size/CHANGELOG.md b/vendor/text-size/CHANGELOG.md index 0167599e5..4f8c9affb 100644 --- a/vendor/text-size/CHANGELOG.md +++ b/vendor/text-size/CHANGELOG.md @@ -1,26 +1,26 @@ -# Changelog - -## 1.1.0 - -* add `TextRange::ordering` method - -## 1.0.0 :tada: - -* the carate is renamed to `text-size` from `text_unit` - -Transition table: -- `TextUnit::of_char(c)` ⟹ `TextSize::of(c)` -- `TextUnit::of_str(s)` ⟹ `TextSize::of(s)` -- `TextUnit::from_usize(size)` ⟹ `TextSize::try_from(size).unwrap_or_else(|| panic!(_))` -- `unit.to_usize()` ⟹ `usize::from(size)` -- `TextRange::from_to(from, to)` ⟹ `TextRange::new(from, to)` -- `TextRange::offset_len(offset, size)` ⟹ `TextRange::from_len(offset, size)` -- `range.start()` ⟹ `range.start()` -- `range.end()` ⟹ `range.end()` -- `range.len()` ⟹ `range.len()` -- `range.is_empty()` ⟹ `range.is_empty()` -- `a.is_subrange(b)` ⟹ `b.contains_range(a)` -- `a.intersection(b)` ⟹ `a.intersect(b)` -- `a.extend_to(b)` ⟹ `a.cover(b)` -- `range.contains(offset)` ⟹ `range.contains(point)` -- `range.contains_inclusive(offset)` ⟹ `range.contains_inclusive(point)` +# Changelog
+
+## 1.1.0
+
+* add `TextRange::ordering` method
+
+## 1.0.0 :tada:
+
+* the carate is renamed to `text-size` from `text_unit`
+
+Transition table:
+- `TextUnit::of_char(c)` ⟹ `TextSize::of(c)`
+- `TextUnit::of_str(s)` ⟹ `TextSize::of(s)`
+- `TextUnit::from_usize(size)` ⟹ `TextSize::try_from(size).unwrap_or_else(|| panic!(_))`
+- `unit.to_usize()` ⟹ `usize::from(size)`
+- `TextRange::from_to(from, to)` ⟹ `TextRange::new(from, to)`
+- `TextRange::offset_len(offset, size)` ⟹ `TextRange::from_len(offset, size)`
+- `range.start()` ⟹ `range.start()`
+- `range.end()` ⟹ `range.end()`
+- `range.len()` ⟹ `range.len()`
+- `range.is_empty()` ⟹ `range.is_empty()`
+- `a.is_subrange(b)` ⟹ `b.contains_range(a)`
+- `a.intersection(b)` ⟹ `a.intersect(b)`
+- `a.extend_to(b)` ⟹ `a.cover(b)`
+- `range.contains(offset)` ⟹ `range.contains(point)`
+- `range.contains_inclusive(offset)` ⟹ `range.contains_inclusive(point)`
|