|
1 | 1 | # Releases
|
2 | 2 |
|
3 |
| -## 0.5.3 |
| 3 | +## 0.5.3 (2024-08-30) |
4 | 4 |
|
5 | 5 | - Added an `insert_before` method to `OrderMap` and `OrderSet`, as an
|
6 | 6 | alternative to `shift_insert` with different behavior on existing entries.
|
7 | 7 | - Added `first_entry` and `last_entry` methods to `OrderMap`.
|
8 | 8 | - Added `From` implementations between `IndexedEntry` and `OccupiedEntry`.
|
9 | 9 |
|
10 |
| -## 0.5.2 |
| 10 | +## 0.5.2 (2024-08-13) |
11 | 11 |
|
12 | 12 | - Added methods `OrderMap::append` and `OrderSet::append`, moving all items from
|
13 | 13 | one map or set into another, and leaving the original capacity for reuse.
|
14 | 14 |
|
15 |
| -## 0.5.1 |
| 15 | +## 0.5.1 (2024-08-01) |
16 | 16 |
|
17 | 17 | - Added trait `MutableEntryKey` for opt-in mutable access to map entry keys.
|
18 | 18 | - Added method `MutableKeys::iter_mut2` for opt-in mutable iteration of map
|
19 | 19 | keys and values.
|
20 | 20 |
|
21 |
| -## 0.5.0 |
| 21 | +## 0.5.0 (2024-06-25) |
22 | 22 |
|
23 | 23 | - Reinstated `ordermap` as a crate that wraps `indexmap` with stronger
|
24 | 24 | ordering semantics. It **does** consider order for `PartialEq` and `Eq`,
|
25 | 25 | also adding implementations of `PartialOrd`, `Ord`, and `Hash`. Methods
|
26 | 26 | like `remove` use the semantics of indexmap's `shift_remove`.
|
27 | 27 |
|
28 |
| -## 0.4.2 |
| 28 | +## 0.4.2 (2018-11-17) |
29 | 29 |
|
30 | 30 | - Inserted more deprecation information in the documentation.
|
31 | 31 | Note: the crate ordermap has been renamed with no change in functionality
|
32 | 32 | to indexmap; please use it under its new name.
|
33 | 33 |
|
34 |
| -## 0.4.1 |
| 34 | +## 0.4.1 (2018-02-14) |
35 | 35 |
|
36 | 36 | - Renamed crate to `indexmap`; the `ordermap` crate is now deprecated
|
37 | 37 | and the types `OrderMap/Set` now have a deprecation notice.
|
38 | 38 |
|
39 |
| -## 0.4.0 |
| 39 | +## 0.4.0 (2018-02-02) |
40 | 40 |
|
41 | 41 | - This is the last release series for this `ordermap` under that name,
|
42 | 42 | because the crate is **going to be renamed** to `indexmap` (with types
|
|
55 | 55 |
|
56 | 56 | - Minimum Rust version requirement increased to Rust 1.18
|
57 | 57 |
|
58 |
| -## 0.3.5 |
| 58 | +## 0.3.5 (2018-01-14) |
59 | 59 |
|
60 | 60 | - Documentation improvements
|
61 | 61 |
|
62 |
| -## 0.3.4 |
| 62 | +## 0.3.4 (2018-01-04) |
63 | 63 |
|
64 | 64 | - The `.retain()` methods for `OrderMap` and `OrderSet` now
|
65 | 65 | traverse the elements in order, and the retained elements **keep their order**
|
66 | 66 | - Added new methods `.sort_by()`, `.sort_keys()` to `OrderMap` and
|
67 | 67 | `.sort_by()`, `.sort()` to `OrderSet`. These methods allow you to
|
68 | 68 | sort the maps in place efficiently.
|
69 | 69 |
|
70 |
| -## 0.3.3 |
| 70 | +## 0.3.3 (2017-12-28) |
71 | 71 |
|
72 | 72 | - Document insertion behaviour better by @lucab
|
73 | 73 | - Updated dependences (no feature changes) by @ignatenkobrain
|
74 | 74 |
|
75 |
| -## 0.3.2 |
| 75 | +## 0.3.2 (2017-11-25) |
76 | 76 |
|
77 | 77 | - Add `OrderSet` by @cuviper!
|
78 | 78 | - `OrderMap::drain` is now (too) a double ended iterator.
|
79 | 79 |
|
80 |
| -## 0.3.1 |
| 80 | +## 0.3.1 (2017-11-19) |
81 | 81 |
|
82 | 82 | - In all ordermap iterators, forward the `collect` method to the underlying
|
83 | 83 | iterator as well.
|
84 | 84 | - Add crates.io categories.
|
85 | 85 |
|
86 |
| -## 0.3.0 |
| 86 | +## 0.3.0 (2017-10-07) |
87 | 87 |
|
88 | 88 | - The methods `get_pair`, `get_pair_index` were both replaced by
|
89 | 89 | `get_full` (and the same for the mutable case).
|
|
98 | 98 |
|
99 | 99 | [#10]: https://github.com/indexmap-rs/indexmap/pull/10
|
100 | 100 |
|
101 |
| -## 0.2.13 |
| 101 | +## 0.2.13 (2017-09-30) |
102 | 102 |
|
103 | 103 | - Fix deserialization to support custom hashers by @Techcable.
|
104 | 104 | - Add methods `.index()` on the entry types by @garro95.
|
105 | 105 |
|
106 |
| -## 0.2.12 |
| 106 | +## 0.2.12 (2017-09-11) |
107 | 107 |
|
108 | 108 | - Add methods `.with_hasher()`, `.hasher()`.
|
109 | 109 |
|
110 |
| -## 0.2.11 |
| 110 | +## 0.2.11 (2017-08-29) |
111 | 111 |
|
112 | 112 | - Support `ExactSizeIterator` for the iterators. By @Binero.
|
113 | 113 | - Use `Box<[Pos]>` internally, saving a word in the `OrderMap` struct.
|
114 | 114 | - Serde support, with crate feature `"serde-1"`. By @xfix.
|
115 | 115 |
|
116 |
| -## 0.2.10 |
| 116 | +## 0.2.10 (2017-04-29) |
117 | 117 |
|
118 | 118 | - Add iterator `.drain(..)` by @stevej.
|
119 | 119 |
|
120 |
| -## 0.2.9 |
| 120 | +## 0.2.9 (2017-03-26) |
121 | 121 |
|
122 | 122 | - Add method `.is_empty()` by @overvenus.
|
123 | 123 | - Implement `PartialEq, Eq` by @overvenus.
|
124 | 124 | - Add method `.sorted_by()`.
|
125 | 125 |
|
126 |
| -## 0.2.8 |
| 126 | +## 0.2.8 (2017-03-01) |
127 | 127 |
|
128 | 128 | - Add iterators `.values()` and `.values_mut()`.
|
129 | 129 | - Fix compatibility with 32-bit platforms.
|
130 | 130 |
|
131 |
| -## 0.2.7 |
| 131 | +## 0.2.7 (2016-11-02) |
132 | 132 |
|
133 | 133 | - Add `.retain()`.
|
134 | 134 |
|
135 |
| -## 0.2.6 |
| 135 | +## 0.2.6 (2016-11-02) |
136 | 136 |
|
137 | 137 | - Add `OccupiedEntry::remove_entry` and other minor entry methods,
|
138 | 138 | so that it now has all the features of `HashMap`'s entries.
|
139 | 139 |
|
140 |
| -## 0.2.5 |
| 140 | +## 0.2.5 (2016-10-31) |
141 | 141 |
|
142 | 142 | - Improved `.pop()` slightly.
|
143 | 143 |
|
144 |
| -## 0.2.4 |
| 144 | +## 0.2.4 (2016-10-22) |
145 | 145 |
|
146 | 146 | - Improved performance of `.insert()` ([#3]) by @pczarn.
|
147 | 147 |
|
148 | 148 | [#3]: https://github.com/indexmap-rs/indexmap/pull/3
|
149 | 149 |
|
150 |
| -## 0.2.3 |
| 150 | +## 0.2.3 (2016-10-11) |
151 | 151 |
|
152 | 152 | - Generalize `Entry` for now, so that it works on hashmaps with non-default
|
153 | 153 | hasher. However, there's a lingering compat issue since libstd `HashMap`
|
154 | 154 | does not parameterize its entries by the hasher (`S` typarm).
|
155 | 155 | - Special case some iterator methods like `.nth()`.
|
156 | 156 |
|
157 |
| -## 0.2.2 |
| 157 | +## 0.2.2 (2016-10-02) |
158 | 158 |
|
159 | 159 | - Disable the verbose `Debug` impl by default.
|
160 | 160 |
|
161 |
| -## 0.2.1 |
| 161 | +## 0.2.1 (2016-10-02) |
162 | 162 |
|
163 | 163 | - Fix doc links and clarify docs.
|
164 | 164 |
|
165 |
| -## 0.2.0 |
| 165 | +## 0.2.0 (2016-10-01) |
166 | 166 |
|
167 | 167 | - Add more `HashMap` methods & compat with its API.
|
168 | 168 | - Experimental support for `.entry()` (the simplest parts of the API).
|
|
174 | 174 | `.get_index()`, `.get_index_mut()`, `.swap_remove_index()`,
|
175 | 175 | `.get_pair_index()`, `.get_pair_index_mut()`.
|
176 | 176 |
|
177 |
| -## 0.1.2 |
| 177 | +## 0.1.2 (2016-09-19) |
178 | 178 |
|
179 | 179 | - Implement the 32/32 split idea for `Pos` which improves cache utilization
|
180 | 180 | and lookup performance.
|
181 | 181 |
|
182 |
| -## 0.1.1 |
| 182 | +## 0.1.1 (2016-09-16) |
183 | 183 |
|
184 | 184 | - Initial release.
|
0 commit comments