Skip to content

Commit

Permalink
Fixed a documentation error and bumped to 2.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
KittyGiraudel committed Sep 9, 2014
1 parent 4c3e35e commit 2394efd
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
# Changelog

* `2.2.4`: fixing a documentation error
* `2.2.3`: adding examples to documentation
* `2.2.2`: fixing a bug with aliases for `sl-to-list()` and moved all comments to C-like
* `2.2.1`: improving `sl-to-list()`'s performance
* `2.2.0`:
* `2.2.0`:
* adding `sl-range()`, `sl-is-single()`, `sl-has-values()`, `sl-has-multiple-values()`
* updating `sl-sum()` and `sl-to-map()`
* making the whole library depending on most of the previously created helpers
* making most functions returning `list` type, even when returning a single value
* `2.1.1`: fixing a tiny issue with dependency checker in `preprend()`
* `2.1.0`: adding `sl-is-empty()`, `sl-to-list()` and `sl-comma-list()`
* `2.0.0`:
* `2.0.0`:
* adding `sl-to-map()`, `sl-every()` and `sl-some()`
* adding and improved tests
* prefixing all functions with `sl-`
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "SassyLists",
"version": "2.2.3",
"version": "2.2.4",
"homepage": "https://github.com/Team-Sass/SassyLists",
"authors": [
"Hugo Giraudel"
Expand Down
4 changes: 2 additions & 2 deletions lib/SassyLists.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# Version is a number. If a version contains alphas, it will be created as a prerelease version
# Date is in the form of YYYY-MM-DD
module SassyLists
VERSION = "2.2.3"
DATE = "2014-07-05"
VERSION = "2.2.4"
DATE = "2014-09-09"
end

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "SassyLists",
"title": "SassyLists",
"version": "2.2.3",
"version": "2.2.4",
"description": "A Sass API for lists.",
"scripts": {
"test": "grunt test"
Expand Down
3 changes: 1 addition & 2 deletions stylesheets/SassyLists/_remove.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
*
* @param {List} $list - list to update
* @param {*} $value - value to remove
* @param {Bool} $recursive - enable/disable recursion
*
* @example
* sl-remove(a b c, a)
Expand All @@ -26,7 +25,7 @@
* @requires sl-remove
* @alias sl-remove
*/

@function sl-without($list, $value) {
@return sl-remove($list, $value);
}

0 comments on commit 2394efd

Please sign in to comment.