From 1bc22eb4137928db35606811103f5b4dcb8c477b Mon Sep 17 00:00:00 2001 From: Shane da Silva Date: Tue, 5 Jul 2016 11:11:09 -0700 Subject: [PATCH] Cut version 0.49.0 --- CHANGELOG.md | 24 ++++++++++++++++-------- lib/scss_lint/version.rb | 2 +- 2 files changed, 17 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 09634df4..84fd2e03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,21 +1,29 @@ # SCSS-Lint Changelog -## master (unreleased) +## 0.49.0 + +### New Features -* Increase minimum required `sass` gem version to 3.4.20+ -* Fix `PropertySortOrder` `separate_groups` option to work for preset sort - orders * Add `background-clip` and `clip` to `smacss` preset sort order -* Fix `TrailingZero` to report correct lint messages for values with multiple - trailing zeros +* Add `LengthVariable` linter for reporting when variables should be used + instead of literal lengths + +### Changes + +* Increase minimum required `sass` gem version to 3.4.20+ * Modify `Shorthand` linter to report lint if a shorthand of a length not specified in the `allowed_shorthands` option is used * Ignore SCSS functions in `NameFormat` linter * Update default formatter to output column number in addition to line number -* Add `LengthVariable` linter for reporting when variables should be used - instead of literal lengths * Wrap `@`-declaratives in backticks in lint messages +### Bug Fixes + +* Fix `PropertySortOrder` `separate_groups` option to work for preset sort + orders +* Fix `TrailingZero` to report correct lint messages for values with multiple + trailing zeros + ## 0.48.0 * Relax `rake` gem dependency to allow 11.x.x versions diff --git a/lib/scss_lint/version.rb b/lib/scss_lint/version.rb index 26d87392..a03befa7 100644 --- a/lib/scss_lint/version.rb +++ b/lib/scss_lint/version.rb @@ -2,5 +2,5 @@ # Defines the gem version. module SCSSLint - VERSION = '0.48.0'.freeze + VERSION = '0.49.0'.freeze end