diff --git a/README.md b/README.md index ffcb571..de59a33 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,9 @@ growth of the queue. All operations are O(1) (constant time). Spique does not require an initial or maximum size (although you can define a maximum if you wish), and will both grow and shrink dynamically as items are -added and removed. +added and removed. Unlike many other deque implementations, dynamic resizing +is an extremely cheap O(1) operation, and will not have any notable impact on +performance. Spique is available [via npm](https://www.npmjs.com/package/spique): ```bash diff --git a/package.json b/package.json index 429a4d2..099449e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "spique", - "version": "1.0.9", + "version": "1.0.10", "description": "A spiral deque - high performance and dynamic queue size", "main": "spique.js", "scripts": {