Skip to content

Commit

Permalink
2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wooorm committed Dec 1, 2015
1 parent 44d4daa commit 2f27616
Show file tree
Hide file tree
Showing 42 changed files with 50 additions and 42 deletions.
4 changes: 2 additions & 2 deletions .mdastrc-man
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"output": "man/",
"plugins": {
"mdast-man": {
"date": "2015-10-05",
"date": "2015-12-01",
"manual": "mdast manual",
"version": "2.2.2"
"version": "2.3.0"
}
}
}
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mdast",
"version": "2.2.2",
"version": "2.3.0",
"description": "Markdown processor powered by plugins",
"license": "MIT",
"keywords": [
Expand Down
8 changes: 8 additions & 0 deletions history.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

<!--lint disable no-multiple-toplevel-headings maximum-line-length-->

2.3.0 / 2015-12-01
==================

* Refactor to prefer prefixed plug-ins in mdast(1) ([44d4daa](https://github.com/wooorm/mdast/commit/44d4daa))
* Fix recursive `plugins` key handling in mdast(1) ([4bb02b2](https://github.com/wooorm/mdast/commit/4bb02b2))
* Add getting-started documentation ([a20d9d0](https://github.com/wooorm/mdast/commit/a20d9d0))
* Fix stdout(4) and stderr(4) usage ([501a377](https://github.com/wooorm/mdast/commit/501a377))

2.2.2 / 2015-11-21
==================

Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @copyright 2015 Titus Wormer
* @license MIT
* @module mdast
* @version 2.2.2
* @version 2.3.0
* @fileoverview Markdown processor powered by plugins.
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/cli/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @copyright 2015 Titus Wormer
* @license MIT
* @module mdast:cli:cli
* @version 2.2.2
* @version 2.3.0
* @fileoverview Bridge between CLI options and node.
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/cli/configuration.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @copyright 2015 Titus Wormer
* @license MIT
* @module mdast:cli:configuration
* @version 2.2.2
* @version 2.3.0
* @fileoverview Find mdast rc files.
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/cli/file-pipeline/configure.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @copyright 2015 Titus Wormer
* @license MIT
* @module mdast:cli:file-pipeline:configure
* @version 2.2.2
* @version 2.3.0
* @fileoverview Configure a file.
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/cli/file-pipeline/copy.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @copyright 2015 Titus Wormer
* @license MIT
* @module mdast:cli:file-pipeline:copy
* @version 2.2.2
* @version 2.3.0
* @fileoverview Move a file.
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/cli/file-pipeline/file-system.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @copyright 2015 Titus Wormer
* @license MIT
* @module mdast:cli:file-pipeline:file-system
* @version 2.2.2
* @version 2.3.0
* @fileoverview Write a file to the file system.
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/cli/file-pipeline/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @copyright 2015 Titus Wormer
* @license MIT
* @module mdast:cli:file-pipeline
* @version 2.2.2
* @version 2.3.0
* @fileoverview Process a file.
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/cli/file-pipeline/parse.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @copyright 2015 Titus Wormer
* @license MIT
* @module mdast:cli:file-pipeline:parse
* @version 2.2.2
* @version 2.3.0
* @fileoverview Parse a file into an AST.
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/cli/file-pipeline/queue.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @copyright 2015 Titus Wormer
* @license MIT
* @module mdast:cli:file-pipeline:queue
* @version 2.2.2
* @version 2.3.0
* @fileoverview Queue all files which came this far.
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/cli/file-pipeline/read.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @copyright 2015 Titus Wormer
* @license MIT
* @module mdast:cli:file-pipeline:read
* @version 2.2.2
* @version 2.3.0
* @fileoverview Read a file if not already filled.
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/cli/file-pipeline/stdout.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @copyright 2015 Titus Wormer
* @license MIT
* @module mdast:cli:file-pipeline:stdout
* @version 2.2.2
* @version 2.3.0
* @fileoverview Write a file to stdout(4).
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/cli/file-pipeline/stringify.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @copyright 2015 Titus Wormer
* @license MIT
* @module mdast:cli:file-pipeline:stringify
* @version 2.2.2
* @version 2.3.0
* @fileoverview Compile an AST into a file.
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/cli/file-pipeline/transform.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @copyright 2015 Titus Wormer
* @license MIT
* @module mdast:cli:file-pipeline:transform
* @version 2.2.2
* @version 2.3.0
* @fileoverview Transform an AST associated with a file.
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/cli/file-set-pipeline/configure.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @copyright 2015 Titus Wormer
* @license MIT
* @module mdast:cli:file-set-pipeline:configure
* @version 2.2.2
* @version 2.3.0
* @fileoverview Configure a collection of files.
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/cli/file-set-pipeline/file-system.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @copyright 2015 Titus Wormer
* @license MIT
* @module mdast:cli:file-set-pipeline:traverse
* @version 2.2.2
* @version 2.3.0
* @fileoverview Find files from the file-system.
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/cli/file-set-pipeline/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @copyright 2015 Titus Wormer
* @license MIT
* @module mdast:cli:file-set-pipeline
* @version 2.2.2
* @version 2.3.0
* @fileoverview Process a collection of files.
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/cli/file-set-pipeline/log.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @copyright 2015 Titus Wormer
* @license MIT
* @module mdast:cli:log
* @version 2.2.2
* @version 2.3.0
* @fileoverview Log a file context on successful completion.
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/cli/file-set-pipeline/stdin.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @copyright 2015 Titus Wormer
* @license MIT
* @module mdast:cli:file-set-pipeline:stdin
* @version 2.2.2
* @version 2.3.0
* @fileoverview Read from stdin.
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/cli/file-set-pipeline/transform.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @copyright 2015 Titus Wormer
* @license MIT
* @module mdast:cli:file-set-pipeline:transform
* @version 2.2.2
* @version 2.3.0
* @fileoverview Transform all files.
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/cli/file-set.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @copyright 2015 Titus Wormer
* @license MIT
* @module mdast:cli:file-set
* @version 2.2.2
* @version 2.3.0
* @fileoverview Collection of virtual files.
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/cli/finder.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @copyright 2015 Titus Wormer
* @license MIT
* @module mdast:cli:traverser
* @version 2.2.2
* @version 2.3.0
* @fileoverview Get applicable input files from
* the file system to be processed by mdast, respecting
* ignored paths and applicable extensions.
Expand Down
2 changes: 1 addition & 1 deletion lib/cli/ignore.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @copyright 2015 Titus Wormer
* @license MIT
* @module mdast:cli:ignore
* @version 2.2.2
* @version 2.3.0
* @fileoverview Find mdast ignore files.
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/cli/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @copyright 2015 Titus Wormer
* @license MIT
* @module mdast:cli
* @version 2.2.2
* @version 2.3.0
* @fileoverview CLI Engine.
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/cli/spinner.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @copyright 2015 Titus Wormer
* @license MIT
* @module mdast:cli:spinner
* @version 2.2.2
* @version 2.3.0
* @fileoverview A spinner for stdout(4).
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/cli/watch-output-cache.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @author YJ Yang
* @copyright 2015 Titus Wormer
* @license MIT
* @version 2.2.2
* @version 2.3.0
* @module mdast:cli:watch-output-cache
* @fileoverview Cache changed files which are also watched.
*/
Expand Down
2 changes: 1 addition & 1 deletion lib/defaults.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @copyright 2015 Titus Wormer
* @license MIT
* @module mdast:defaults
* @version 2.2.2
* @version 2.3.0
* @fileoverview Default values for parse and
* stringification settings.
*/
Expand Down
2 changes: 1 addition & 1 deletion lib/parse.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @copyright 2015 Titus Wormer
* @license MIT
* @module mdast:parse
* @version 2.2.2
* @version 2.3.0
* @fileoverview Parse a markdown document into an
* abstract syntax tree.
*/
Expand Down
2 changes: 1 addition & 1 deletion lib/stringify.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @copyright 2015 Titus Wormer
* @license MIT
* @module mdast:stringify
* @version 2.2.2
* @version 2.3.0
* @fileoverview Compile an abstract syntax tree into
* a markdown document.
*/
Expand Down
2 changes: 1 addition & 1 deletion lib/utilities.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @copyright 2015 Titus Wormer
* @license MIT
* @module mdast:utilities
* @version 2.2.2
* @version 2.3.0
* @fileoverview Collection of tiny helpers useful for
* both parsing and compiling markdown.
*/
Expand Down
2 changes: 1 addition & 1 deletion man/mdast.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "MDAST" "1" "October 2015" "2.2.2" "mdast manual"
.TH "MDAST" "1" "December 2015" "2.3.0" "mdast manual"
.SH "NAME"
\fBmdast\fR - Markdown processor
.SH "SYNOPSIS"
Expand Down
2 changes: 1 addition & 1 deletion man/mdast.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "MDAST" "3" "October 2015" "2.2.2" "mdast manual"
.TH "MDAST" "3" "December 2015" "2.3.0" "mdast manual"
.SH "NAME"
\fBmdast\fR - Markdown processor
.SH "SYNOPSIS"
Expand Down
2 changes: 1 addition & 1 deletion man/mdastconfig.7
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "MDASTCONFIG" "7" "October 2015" "2.2.2" "mdast manual"
.TH "MDASTCONFIG" "7" "December 2015" "2.3.0" "mdast manual"
.SH "NAME"
\fBmdastconfig\fR - mdast configuration
.SH "SYNOPSIS"
Expand Down
2 changes: 1 addition & 1 deletion man/mdastignore.5
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "MDASTIGNORE" "5" "October 2015" "2.2.2" "mdast manual"
.TH "MDASTIGNORE" "5" "December 2015" "2.3.0" "mdast manual"
.SH "NAME"
\fBmdastignore\fR - mdast ignore files
.SH "SYNOPSIS"
Expand Down
2 changes: 1 addition & 1 deletion man/mdastnode.7
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "MDASTNODE" "7" "October 2015" "2.2.2" "mdast manual"
.TH "MDASTNODE" "7" "December 2015" "2.3.0" "mdast manual"
.SH "NAME"
\fBmdastnode\fR - mdast syntax representation
.SH "SYNOPSIS"
Expand Down
2 changes: 1 addition & 1 deletion man/mdastplugin.3
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "MDASTPLUGIN" "3" "October 2015" "2.2.2" "mdast manual"
.TH "MDASTPLUGIN" "3" "December 2015" "2.3.0" "mdast manual"
.SH "NAME"
\fBmdastplugin\fR - mdast plug-in creation
.SH "SYNOPSIS"
Expand Down
2 changes: 1 addition & 1 deletion man/mdastplugin.7
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "MDASTPLUGIN" "7" "October 2015" "2.2.2" "mdast manual"
.TH "MDASTPLUGIN" "7" "December 2015" "2.3.0" "mdast manual"
.SH "NAME"
\fBmdastplugin\fR - mdast plug-in usage
.SH "SYNOPSIS"
Expand Down
2 changes: 1 addition & 1 deletion man/mdastrc.5
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "MDASTRC" "5" "October 2015" "2.2.2" "mdast manual"
.TH "MDASTRC" "5" "December 2015" "2.3.0" "mdast manual"
.SH "NAME"
\fBmdastrc\fR - mdast config files
.SH "SYNOPSIS"
Expand Down
2 changes: 1 addition & 1 deletion man/mdastsetting.7
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "MDASTSETTING" "7" "October 2015" "2.2.2" "mdast manual"
.TH "MDASTSETTING" "7" "December 2015" "2.3.0" "mdast manual"
.SH "NAME"
\fBmdastsetting\fR - mdast settings
.SH "SYNOPSIS"
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": "mdast",
"version": "2.2.2",
"version": "2.3.0",
"description": "Markdown processor powered by plugins",
"license": "MIT",
"keywords": [
Expand Down

0 comments on commit 2f27616

Please sign in to comment.