File: RELEASES.md

package info (click to toggle)
rust-dlv-list 0.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 180 kB
  • sloc: makefile: 4
file content (49 lines) | stat: -rw-r--r-- 859 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# 0.3.0

 - Drop dependency on `rand`.

# 0.2.4

 - Yanked due to breaking change.

# 0.2.3

 - Update `rand` from `0.7.3` to `0.8.3`.

# 0.2.2
 
 - Update `rand` from `0.5.5` to `0.7.3`.

# 0.2.1

 - Reduce memory size of `VecList` from 96 bytes to 64. Tradeoff is max capacity is now reduced by
   1 and a very slight performance decrease.

# 0.2.0

 - Change `VecList::retain` to give mutability to entries.

# 0.1.5

 - Add unsafe removal function `VecList::remove_sync`. See its documentation for details.

# 0.1.4

 - Remove unnecessary `Debug` bounds.

# 0.1.3

 - Fix possible overflow when incrementing generation.
 - Fix underflow when calling `pack_to_fit` on an empty `VecList`.

# 0.1.2

 - Make iterator `iter` functions public.

# 0.1.1

 - Iterator optimizations.

# 0.1.0

 - Initial release.