Skip to content

Commit

Permalink
Release 6.0 version
Browse files Browse the repository at this point in the history
ai committed May 6, 2017
1 parent 761ef5b commit b7268f4
Showing 4 changed files with 23 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .yaspellerrc
Original file line number Diff line number Diff line change
@@ -191,6 +191,10 @@
"Packt",
"Libby",
"LTR",
"RTL"
"RTL",
"Orias",
"Oleh",
"Kuchuk",
"Kalani"
]
}
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
# Change Log
This project adheres to [Semantic Versioning](http://semver.org/).

## 6.0 “Marquis Orias”
* Remove node.js 0.12 support.
* Remove deprecated method from PostCSS 4.
* Insert methods remove child from previous parent, instead of closing.
* Insert methods and cloning doesn’t clean `raws` anymore.
* Methods `moveTo`, `moveAfter`, `moveBefore` were deprecated.
* Options was changed in `Plugin#process(css, processOptions, pluginOptions)`.
* Add stream parser to reduce memory usage (by Oleh Kuchuk).
* Add `before()`/`after()` shortcuts for `node.parent.insertBefore(node, x)`.
* Add `Rule#raws.ownSemicolon` for semicolon after templates for `@apply`.
* Use `babel-preset-env` to compile npm package.
* Remove `js-base64` from dependencies (by Roman Dvornov).
* Fix error message on single `:` in CSS.
* Move tests to Jest.
* Clean up test (by Gabriel Kalani).

## 5.2.17
* Add `postcss-sass` suggestion to syntax error on `.sass` input.

2 changes: 1 addition & 1 deletion lib/processor.es6
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ class Processor {
* throw new Error('This plugin works only with PostCSS 5');
* }
*/
this.version = '5.2.17';
this.version = '6.0.0';
/**
* @member {pluginFunction[]} - Plugins added to this processor.
*
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "postcss",
"version": "5.2.17",
"version": "6.0.0",
"description": "Tool for transforming styles with JS plugins",
"engines": {
"node": ">=4.0.0"

0 comments on commit b7268f4

Please sign in to comment.