Skip to content

Commit 5aed99e

Browse files
committed
Bump version to 0.2.6
1 parent 471746d commit 5aed99e

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
## [0.2.6] - 2020-07-27
6+
57
### Added
68
- `CircularQueue::is_full()` for checking whether the queue is completely filled.
79

@@ -49,7 +51,8 @@
4951
### Added
5052
- `CircularQueue::iter_mut()`.
5153

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
5356
[0.2.5]: https://github.com/YaLTeR/circular-queue/compare/v0.2.4...v0.2.5
5457
[0.2.4]: https://github.com/YaLTeR/circular-queue/compare/v0.2.3...v0.2.4
5558
[0.2.3]: https://github.com/YaLTeR/circular-queue/compare/v0.2.2...v0.2.3

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
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
44
authors = ["Ivan Molodetskikh <[email protected]>"]
55
description = "A circular buffer-like queue."
66
license = "MIT/Apache-2.0"

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
//! ```
3333
3434
#![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")]
3636

3737
#[cfg(has_extern_crate_alloc)]
3838
extern crate alloc;

0 commit comments

Comments
 (0)