Commit 5aed99e 1 parent 471746d commit 5aed99e Copy full SHA for 5aed99e
File tree 3 files changed +6
-3
lines changed
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## [ Unreleased]
4
4
5
+ ## [ 0.2.6] - 2020-07-27
6
+
5
7
### Added
6
8
- ` CircularQueue::is_full() ` for checking whether the queue is completely filled.
7
9
49
51
### Added
50
52
- ` CircularQueue::iter_mut() ` .
51
53
52
- [ Unreleased ] : https://github.com/YaLTeR/circular-queue/compare/v0.2.5...HEAD
54
+ [ Unreleased ] : https://github.com/YaLTeR/circular-queue/compare/v0.2.6...HEAD
55
+ [ 0.2.6 ] : https://github.com/YaLTeR/circular-queue/compare/v0.2.5...v0.2.6
53
56
[ 0.2.5 ] : https://github.com/YaLTeR/circular-queue/compare/v0.2.4...v0.2.5
54
57
[ 0.2.4 ] : https://github.com/YaLTeR/circular-queue/compare/v0.2.3...v0.2.4
55
58
[ 0.2.3 ] : https://github.com/YaLTeR/circular-queue/compare/v0.2.2...v0.2.3
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " circular-queue"
3
- version = " 0.2.5 " # remember to update html_root_url
3
+ version = " 0.2.6 " # remember to update html_root_url
4
4
authors = [
" Ivan Molodetskikh <[email protected] >" ]
5
5
description = " A circular buffer-like queue."
6
6
license = " MIT/Apache-2.0"
Original file line number Diff line number Diff line change 32
32
//! ```
33
33
34
34
#![ cfg_attr( has_extern_crate_alloc, no_std) ]
35
- #![ doc( html_root_url = "https://docs.rs/circular-queue/0.2.5 " ) ]
35
+ #![ doc( html_root_url = "https://docs.rs/circular-queue/0.2.6 " ) ]
36
36
37
37
#[ cfg( has_extern_crate_alloc) ]
38
38
extern crate alloc;
You can’t perform that action at this time.
0 commit comments