-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added more examples; releasing v1.0.1
- Loading branch information
1 parent
2968873
commit b2a8f87
Showing
4 changed files
with
479 additions
and
2 deletions.
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,4 +1,13 @@ | ||
|
||
# 1.0.0 | ||
|
||
* First stable release, production ready, certified to use as a FIFO queue or LIFO stack. Mixed Push/Pop/Front/Back is pending more testing and so is not recommended for use in a production setting. | ||
|
||
|
||
# 1.0.1 | ||
|
||
* Fixed bug related to spare slices. The bug where the deque was not eliminating reused slices correctly caused it to cache more slices than maxSpareLinks (4), inflating memory unnecessarily. In refill scenarios where some items are pushed and removed from the deque repeatedly, can cause the deque to return 'nil' instead of the actual value if exactly a multiple of 256 + 16 (i.e. 272, 528, 784, etc) is pushed into the deque. | ||
- Commit 1: https://github.com/ef-ds/deque/commit/5cda9cbd756b5001cd8bb5e2b33675d65c61149d | ||
- Commit 2: https://github.com/ef-ds/deque/commit/4de25e4de16dfe904669fe0a4ad3b0d189095fad | ||
- Benchmark tests: [v1.0.0 vs v1.0.1](testdata/release_v1.0.1.md) | ||
|
||
* Mixed Push/Pop/Front/Back is pending more testing and so is not recommended for use in production environment. |
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
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
Oops, something went wrong.