Skip to content

Commit

Permalink
:shipit: Release/1.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bgriffith committed Aug 27, 2017
1 parent 4870dee commit e9e2cff
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Sass Lint Changelog

## v1.11.0

**August 27th, 2017**

**New Features**
* The `trailing-semicolon` rule now checks for double semicolons [#1107](https://github.com/sasstools/sass-lint/pull/1107)

**Changes**
* Updated `gonzales-pe` parser to use version 4.1.1
* The `no-empty-rulesets` rule now flags rulesets that contain only comments [#998](https://github.com/sasstools/sass-lint/pull/998)
* The `misspelled-properties` rule now uses the [known-css-properties](https://www.npmjs.com/package/known-css-properties) to validate properties.
* The `zero-unit` rule now considers the `%` unit [#1103](https://github.com/sasstools/sass-lint/pull/1103)

**Fixes**
* Fixed a fatal error with the `space-after-bang` rule [#1108](https://github.com/sasstools/sass-lint/pull/1108)
* Fixed an issue where line numbers were incorrect when using `front-matter` [#1060](https://github.com/sasstools/sass-lint/pull/1060)
* Fixed an issue with the `misspelled-properties` rule incorrectly reporting multiline properties [#1106](https://github.com/sasstools/sass-lint/pull/1106)

## v1.10.2

**November 9th, 2016**
Expand All @@ -11,7 +29,6 @@
* Fixed an exception for partial idents in `space-around-operator` [#940](https://github.com/sasstools/sass-lint/pull/940)
* Fixed an issue with negative numbers in `space-around-operator` [#945](https://github.com/sasstools/sass-lint/pull/945)


## v1.10.1

**November 7th, 2016**
Expand Down
2 changes: 1 addition & 1 deletion docs/rules/no-duplicate-properties.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ When `display` is added to the exclude array the following would be allowed:
}
```

When `display` is added to the exclude array the following would be still be disallowed as the duplicate properties are separated by another property:
When `display` is added to the exclude array the following would still be disallowed as the duplicate properties are separated by another property:

```scss
.display-block {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sass-lint",
"version": "1.10.2",
"version": "1.11.0",
"description": "All Node Sass linter!",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit e9e2cff

Please sign in to comment.