diff --git a/CHANGELOG.md b/CHANGELOG.md index 720efa38..6877e4ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ ## Upcoming Version +## 4.11.3 "A range of customizations" + +###### [Server](https://github.com/floere/picky/tree/master/server) + +- Experimental feature: Ranges can now be customized. Pass a category an option `ranging: CustomRanger`. That class has to initialize like `Range.new(min, max)`, but can offer a specialized `#inject` method which can yield a custom order. (Alternatively, implement `#each` and `include Enumerable`) +- Thanks to @andykitchen for this one. + ## 4.11.2 "A range of features" ###### [Server](https://github.com/floere/picky/tree/master/server) diff --git a/version.rb b/version.rb index 13ece135..4bdbb959 100644 --- a/version.rb +++ b/version.rb @@ -1,3 +1,3 @@ module Picky - VERSION = '4.11.2' + VERSION = '4.11.3' end \ No newline at end of file