-
-
Notifications
You must be signed in to change notification settings - Fork 138
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- adds support for empty front matter - upgraded to es6 - update docs closes #65
- Loading branch information
1 parent
1eb7d19
commit da329cd
Showing
37 changed files
with
487 additions
and
367 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
# always ignore files | ||
*.DS_Store | ||
.idea | ||
.vscode | ||
*.sublime-* | ||
|
||
# test related, or directories generated by tests | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,10 +5,7 @@ os: | |
language: node_js | ||
node_js: | ||
- node | ||
- '9' | ||
- '8' | ||
- '7' | ||
- '6' | ||
- '5' | ||
- '4' | ||
- '0.12' | ||
- '0.10' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,24 @@ | ||
# Release history | ||
|
||
## Unreleased | ||
## 4.0.0 - 2018-04-01 | ||
|
||
### Breaking changes | ||
|
||
- Now requires node v4 or higher. | ||
|
||
|
||
## 3.0.0 - 2017-06-30 | ||
|
||
### Breaking changes | ||
* `toml`, `coffee` and `cson` are no longer supported by default. Please see [`options.engines`](README.md#optionsengines) and the [examples](./examples) to learn how to add engines. | ||
|
||
- `toml`, `coffee` and `cson` are no longer supported by default. Please see [`options.engines`](README.md#optionsengines) and the [examples](./examples) to learn how to add engines. | ||
|
||
### Added | ||
* Support for [excerpts](README.md#optionsexcerpt). | ||
* The returned object now has non-enumerable `matter` and `stringify` properties. | ||
|
||
- Support for [excerpts](README.md#optionsexcerpt). | ||
- The returned object now has non-enumerable `matter` and `stringify` properties. | ||
|
||
### Changed | ||
* Refactored engines (parsers), so that it's easier to add parsers and stringifiers. | ||
* `options.parsers` was renamed to [`options.engines`](README.md#optionsengines) | ||
|
||
- Refactored engines (parsers), so that it's easier to add parsers and stringifiers. | ||
- `options.parsers` was renamed to [`options.engines`](README.md#optionsengines) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.