Skip to content

Commit

Permalink
Cut version 0.43.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sds committed Nov 23, 2015
1 parent 3515907 commit 14297b5
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 13 deletions.
32 changes: 20 additions & 12 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,36 +1,44 @@
# SCSS-Lint Changelog

## master (unreleased)
## 0.43.0

### New Features

* `EmptyLineBetweenBlocks` lints on `@media` and `@at-root` now
* Improve performance of `Indentation` linter
* Add `whitelist` parameter to `MergeableSelector`
* Fix `TrailingSemicolon` false positive for multiline variable declarations
* Add `PseudoElement` linter which checks for the use of double colons with
pseudo elements and single colons with pseudo classes
* Add `disabled_properties` option to `PropertySpelling` allowing properties
to be prohibited from use
* Add support for linting files via STDIN by specifying `--stdin-file-path`
so the appropriate configuration can be applied based on the path
* Add `style` option to `Comment` linter allowing loud comments to be
preferred over silent comments
* Add `ChainedClasses` linter which checks for the use of chained classes
(a.k.a. adjoining classes)
* Add `at_least_one_space` option to `SpaceAroundOperator` linter

### Changes

* `EmptyLineBetweenBlocks` lints on `@media` and `@at-root` now
* Improve performance of `Indentation` linter
* Change `Indentation` linter with `allow_non_nested_indentation` to allow
any node type to be arbitrarily indented as long as it a child of the root
document node (previously only rule set declarations were allowed)

### Bug Fixes

* Fix `TrailingSemicolon` false positive for multiline variable declarations
* Fix control comments to work when applied on consecutive lines
* Fix linters to not inspect interpolation in `/*...*/` comments due to the
large number of bugs with the source ranges returned by the Sass parser
* Fix line number reporting for `SingleLinePerSelector` with comma sequences
containing multiple sequences on a single line
* Fix `SpaceAfterVariableName` to not report lints for colons with spaces
inside map literals
* Change `Indentation` linter with `allow_non_nested_indentation` to allow
any node type to be arbitrarily indented as long as it a child of the root
document node (previously only rule set declarations were allowed)
* Add `style` option to `Comment` linter allowing loud comments to be
preferred over silent comments
* Add `ChainedClasses` linter which checks for the use of chained classes
(a.k.a. adjoining classes)
* Fix `MergeableSelector` to not report selectors with multiple parent
references
* Fix `SingleLinePerSelector` to report correct line number for sequences
spread over multiple lines
* Add `at_least_one_space` option to `SpaceAroundOperator` linter

## 0.42.2

Expand Down
2 changes: 1 addition & 1 deletion lib/scss_lint/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Defines the gem version.
module SCSSLint
VERSION = '0.42.2'
VERSION = '0.43.0'
end

0 comments on commit 14297b5

Please sign in to comment.