Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 34c0de4

Browse files
committedSep 30, 2022
Release 8.4.17 version
1 parent 9454dcc commit 34c0de4

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed
 

‎CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Change Log
22
This project adheres to [Semantic Versioning](https://semver.org/).
33

4+
## 8.4.17
5+
* Fixed `Node.before()` unexpected behavior (by Romain Menke).
6+
* Added TOC to docs (by Mikhail Dedov).
7+
48
## 8.4.16
59
* Fixed `Root` AST migration.
610

‎lib/processor.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ let Root = require('./root')
77

88
class Processor {
99
constructor(plugins = []) {
10-
this.version = '8.4.16'
10+
this.version = '8.4.17'
1111
this.plugins = this.normalize(plugins)
1212
}
1313

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "postcss",
3-
"version": "8.4.16",
3+
"version": "8.4.17",
44
"description": "Tool for transforming styles with JS plugins",
55
"engines": {
66
"node": "^10 || ^12 || >=14"

0 commit comments

Comments
 (0)
Failed to load comments.