File tree Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " indexmap"
3
- version = " 1.1 .0"
3
+ version = " 1.2 .0"
4
4
authors = [
5
5
" bluss" ,
6
6
Original file line number Diff line number Diff line change @@ -109,6 +109,23 @@ Ideas that we already did
109
109
Recent Changes
110
110
==============
111
111
112
+ - 1.2.0
113
+
114
+ - Plain ``.remove() `` now has a deprecation message, it informs the user
115
+ about picking one of the removal functions ``swap_remove `` and ``shift_remove ``
116
+ which have different performance and order semantics.
117
+ Plain ``.remove() `` will not be removed, the warning message and method
118
+ will remain until further.
119
+
120
+ - Add new method ``shift_remove `` for order preserving removal on the map,
121
+ and ``shift_take `` for the corresponding operation on the set.
122
+
123
+ - Add methods ``swap_remove ``, ``swap_remove_entry `` to ``Entry ``.
124
+
125
+ - Fix indexset/indexmap to support full paths, like ``indexmap::indexmap!() ``
126
+
127
+ - Internal improvements: fix warnings, deprecations and style lints
128
+
112
129
- 1.1.0
113
130
114
131
- Added optional feature `"rayon" ` that adds parallel iterator support
You can’t perform that action at this time.
0 commit comments