-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
12 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,25 @@ | ||
# Changelog | ||
|
||
## 0.2.2 - 2018-08-03 | ||
|
||
- Fixed an issue when resizing an unbounded buffer that is empty that resulted in the buffer length being reported incorrectly. | ||
|
||
## 0.2.1 - 2018-08-02 | ||
|
||
- Fixed a logical error where pushing small amounts of data repeatedly into the buffer would overwrite existing data. | ||
|
||
## 0.2.0 - 2018-05-17 | ||
|
||
0.2 is here! This release is a breaking change with API refactorings and improvements. | ||
|
||
- Refactored module hierarchy to make more sense and to leave room for more data structures in the future. | ||
- Add new traits for buffers that all buffer types can implement. | ||
- Add new bounded atomic buffer implementation. | ||
|
||
## 0.1.1 - 2018-02-24 | ||
|
||
- Fixed a critical logic error causing items to not be removable when the buffer length reached exactly the current capacity of the buffer. | ||
|
||
## 0.1.0 - 2018-02-24 | ||
|
||
- Initial release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ringtail" | ||
version = "0.2.1" | ||
version = "0.2.2" | ||
description = "Efficient ring buffer for byte buffers, FIFO queues, and SPSC channels" | ||
authors = ["Stephen M. Coakley <[email protected]>"] | ||
license = "MIT" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters