Skip to content

Commit 69945c2

Browse files
committed
Add all release dates
1 parent 9aa2c9a commit 69945c2

File tree

1 file changed

+29
-29
lines changed

1 file changed

+29
-29
lines changed

RELEASES.md

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,42 @@
11
# Releases
22

3-
## 0.5.3
3+
## 0.5.3 (2024-08-30)
44

55
- Added an `insert_before` method to `OrderMap` and `OrderSet`, as an
66
alternative to `shift_insert` with different behavior on existing entries.
77
- Added `first_entry` and `last_entry` methods to `OrderMap`.
88
- Added `From` implementations between `IndexedEntry` and `OccupiedEntry`.
99

10-
## 0.5.2
10+
## 0.5.2 (2024-08-13)
1111

1212
- Added methods `OrderMap::append` and `OrderSet::append`, moving all items from
1313
one map or set into another, and leaving the original capacity for reuse.
1414

15-
## 0.5.1
15+
## 0.5.1 (2024-08-01)
1616

1717
- Added trait `MutableEntryKey` for opt-in mutable access to map entry keys.
1818
- Added method `MutableKeys::iter_mut2` for opt-in mutable iteration of map
1919
keys and values.
2020

21-
## 0.5.0
21+
## 0.5.0 (2024-06-25)
2222

2323
- Reinstated `ordermap` as a crate that wraps `indexmap` with stronger
2424
ordering semantics. It **does** consider order for `PartialEq` and `Eq`,
2525
also adding implementations of `PartialOrd`, `Ord`, and `Hash`. Methods
2626
like `remove` use the semantics of indexmap's `shift_remove`.
2727

28-
## 0.4.2
28+
## 0.4.2 (2018-11-17)
2929

3030
- Inserted more deprecation information in the documentation.
3131
Note: the crate ordermap has been renamed with no change in functionality
3232
to indexmap; please use it under its new name.
3333

34-
## 0.4.1
34+
## 0.4.1 (2018-02-14)
3535

3636
- Renamed crate to `indexmap`; the `ordermap` crate is now deprecated
3737
and the types `OrderMap/Set` now have a deprecation notice.
3838

39-
## 0.4.0
39+
## 0.4.0 (2018-02-02)
4040

4141
- This is the last release series for this `ordermap` under that name,
4242
because the crate is **going to be renamed** to `indexmap` (with types
@@ -55,35 +55,35 @@
5555

5656
- Minimum Rust version requirement increased to Rust 1.18
5757

58-
## 0.3.5
58+
## 0.3.5 (2018-01-14)
5959

6060
- Documentation improvements
6161

62-
## 0.3.4
62+
## 0.3.4 (2018-01-04)
6363

6464
- The `.retain()` methods for `OrderMap` and `OrderSet` now
6565
traverse the elements in order, and the retained elements **keep their order**
6666
- Added new methods `.sort_by()`, `.sort_keys()` to `OrderMap` and
6767
`.sort_by()`, `.sort()` to `OrderSet`. These methods allow you to
6868
sort the maps in place efficiently.
6969

70-
## 0.3.3
70+
## 0.3.3 (2017-12-28)
7171

7272
- Document insertion behaviour better by @lucab
7373
- Updated dependences (no feature changes) by @ignatenkobrain
7474

75-
## 0.3.2
75+
## 0.3.2 (2017-11-25)
7676

7777
- Add `OrderSet` by @cuviper!
7878
- `OrderMap::drain` is now (too) a double ended iterator.
7979

80-
## 0.3.1
80+
## 0.3.1 (2017-11-19)
8181

8282
- In all ordermap iterators, forward the `collect` method to the underlying
8383
iterator as well.
8484
- Add crates.io categories.
8585

86-
## 0.3.0
86+
## 0.3.0 (2017-10-07)
8787

8888
- The methods `get_pair`, `get_pair_index` were both replaced by
8989
`get_full` (and the same for the mutable case).
@@ -98,71 +98,71 @@
9898

9999
[#10]: https://github.com/indexmap-rs/indexmap/pull/10
100100

101-
## 0.2.13
101+
## 0.2.13 (2017-09-30)
102102

103103
- Fix deserialization to support custom hashers by @Techcable.
104104
- Add methods `.index()` on the entry types by @garro95.
105105

106-
## 0.2.12
106+
## 0.2.12 (2017-09-11)
107107

108108
- Add methods `.with_hasher()`, `.hasher()`.
109109

110-
## 0.2.11
110+
## 0.2.11 (2017-08-29)
111111

112112
- Support `ExactSizeIterator` for the iterators. By @Binero.
113113
- Use `Box<[Pos]>` internally, saving a word in the `OrderMap` struct.
114114
- Serde support, with crate feature `"serde-1"`. By @xfix.
115115

116-
## 0.2.10
116+
## 0.2.10 (2017-04-29)
117117

118118
- Add iterator `.drain(..)` by @stevej.
119119

120-
## 0.2.9
120+
## 0.2.9 (2017-03-26)
121121

122122
- Add method `.is_empty()` by @overvenus.
123123
- Implement `PartialEq, Eq` by @overvenus.
124124
- Add method `.sorted_by()`.
125125

126-
## 0.2.8
126+
## 0.2.8 (2017-03-01)
127127

128128
- Add iterators `.values()` and `.values_mut()`.
129129
- Fix compatibility with 32-bit platforms.
130130

131-
## 0.2.7
131+
## 0.2.7 (2016-11-02)
132132

133133
- Add `.retain()`.
134134

135-
## 0.2.6
135+
## 0.2.6 (2016-11-02)
136136

137137
- Add `OccupiedEntry::remove_entry` and other minor entry methods,
138138
so that it now has all the features of `HashMap`'s entries.
139139

140-
## 0.2.5
140+
## 0.2.5 (2016-10-31)
141141

142142
- Improved `.pop()` slightly.
143143

144-
## 0.2.4
144+
## 0.2.4 (2016-10-22)
145145

146146
- Improved performance of `.insert()` ([#3]) by @pczarn.
147147

148148
[#3]: https://github.com/indexmap-rs/indexmap/pull/3
149149

150-
## 0.2.3
150+
## 0.2.3 (2016-10-11)
151151

152152
- Generalize `Entry` for now, so that it works on hashmaps with non-default
153153
hasher. However, there's a lingering compat issue since libstd `HashMap`
154154
does not parameterize its entries by the hasher (`S` typarm).
155155
- Special case some iterator methods like `.nth()`.
156156

157-
## 0.2.2
157+
## 0.2.2 (2016-10-02)
158158

159159
- Disable the verbose `Debug` impl by default.
160160

161-
## 0.2.1
161+
## 0.2.1 (2016-10-02)
162162

163163
- Fix doc links and clarify docs.
164164

165-
## 0.2.0
165+
## 0.2.0 (2016-10-01)
166166

167167
- Add more `HashMap` methods & compat with its API.
168168
- Experimental support for `.entry()` (the simplest parts of the API).
@@ -174,11 +174,11 @@
174174
`.get_index()`, `.get_index_mut()`, `.swap_remove_index()`,
175175
`.get_pair_index()`, `.get_pair_index_mut()`.
176176

177-
## 0.1.2
177+
## 0.1.2 (2016-09-19)
178178

179179
- Implement the 32/32 split idea for `Pos` which improves cache utilization
180180
and lookup performance.
181181

182-
## 0.1.1
182+
## 0.1.1 (2016-09-16)
183183

184184
- Initial release.

0 commit comments

Comments
 (0)