README.md in circular_queue-0.0.5 vs README.md in circular_queue-1.0.0

- old
+ new

@@ -1,36 +1,23 @@ # Circular Queue +[![Gem Version](https://badge.fury.io/rb/circular_queue.svg)](https://badge.fury.io/rb/circular_queue) [![Build Status](https://secure.travis-ci.org/alindeman/circular_queue.png)](http://travis-ci.org/alindeman/circular_queue) -Data structure that uses a single, fixed-size buffer as if it were connected -end-to-end. +Data structure that uses a single, fixed-size buffer as if it were connected end-to-end. -**circular_queue** *requires* Ruby 1.9 or a Ruby implementation that -supports 1.9 syntax and standard library (e.g., JRuby in 1.9 mode; -Rubinius 2.0 should work if/when Mutex#sleep is implemented). +### Support -Documentation, including example use, is covered in the [API -Docs](http://rdoc.info/github/alindeman/circular_queue/master/CircularQueue). +`circular_queue` officially supports the [currently supported Ruby versions][rubies], which tends to mean the last three major release. +As of now that's Ruby 2.6, 2.5, and 2.4. +Older Rubies, back to Ruby 1.9, *might* work, but are not officially supported. -## License +### Documentation -Copyright (c) 2011 Andy Lindeman +Documentation, including example use, is covered in the [API Docs][api-docs]. -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: +### [Changelog](CHANGELOG.md) -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +### [License](LICENSE.md) -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +[api-docs]: http://rdoc.info/github/alindeman/circular_queue/master/CircularQueue +[rubies]: https://www.ruby-lang.org/en/downloads/branches/ "Ruby Maintenance Branches"