Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Difference From bndpresbufq-0.1.3 To bndpresbufq-0.1.4
2024-10-05
| ||
18:27 | Release maintenance. Leaf check-in: e1bb2c5156 user: jan tags: bndpresbufq-0.1.4, trunk | |
18:21 | Bugfix: Update the total queue size when try_return() is successful. check-in: 40a762cf04 user: jan tags: trunk | |
01:53 | Release maintenance. check-in: 789a8bbe7d user: jan tags: bndpresbufq-0.1.3, trunk | |
01:51 | Add try_return. check-in: 57133b16db user: jan tags: trunk | |
Changes to Cargo.toml.
1 2 | 1 2 3 4 5 6 7 8 9 10 | - + | [package] name = "bndpresbufq" |
︙ |
Changes to src/lib.rs.
︙ | |||
216 217 218 219 220 221 222 | 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 | + + - - + + + | // Make sure this node wouldn't exceed queue total capacity if self.size + nlen > max_size { return Err(n); } } let ret = self.q.try_return(n); if ret.is_ok() { |
︙ |
Changes to www/changelog.md.
1 2 3 4 | 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 | - + - + + + + + + + + + + + + | # Change Log ## [Unreleased] |
︙ |