diff --git a/.remarkrc-man b/.remarkrc-man index 0f9c2e0a6..34b6ffe82 100644 --- a/.remarkrc-man +++ b/.remarkrc-man @@ -4,7 +4,7 @@ "remark-man": { "date": "2016-01-02", "manual": "remark manual", - "version": "3.1.1" + "version": "3.1.2" } } } diff --git a/component.json b/component.json index 8f5934c20..f911a7ed6 100644 --- a/component.json +++ b/component.json @@ -1,6 +1,6 @@ { "name": "remark", - "version": "3.1.1", + "version": "3.1.2", "description": "Markdown processor powered by plugins", "license": "MIT", "keywords": [ diff --git a/history.md b/history.md index 7e85c10f7..0edb5687d 100644 --- a/history.md +++ b/history.md @@ -2,6 +2,11 @@ +3.1.2 / 2016-01-03 +================== + +* Fix globs to files without extension in remark(1) ([20e253f](https://github.com/wooorm/remark/commit/20e253f)) + 3.1.1 / 2016-01-02 ================== diff --git a/index.js b/index.js index 2570b253b..3cc9df923 100644 --- a/index.js +++ b/index.js @@ -3,7 +3,7 @@ * @copyright 2015-2016 Titus Wormer * @license MIT * @module remark - * @version 3.1.1 + * @version 3.1.2 * @fileoverview Markdown processor powered by plugins. */ diff --git a/lib/cli/cli.js b/lib/cli/cli.js index 5b248125e..1d7caa288 100644 --- a/lib/cli/cli.js +++ b/lib/cli/cli.js @@ -3,7 +3,7 @@ * @copyright 2015-2016 Titus Wormer * @license MIT * @module remark:cli:cli - * @version 3.1.1 + * @version 3.1.2 * @fileoverview Bridge between CLI options and node. */ diff --git a/lib/cli/configuration.js b/lib/cli/configuration.js index 9ce7226be..b982ba10f 100644 --- a/lib/cli/configuration.js +++ b/lib/cli/configuration.js @@ -3,7 +3,7 @@ * @copyright 2015-2016 Titus Wormer * @license MIT * @module remark:cli:configuration - * @version 3.1.1 + * @version 3.1.2 * @fileoverview Find remark rc files. */ diff --git a/lib/cli/file-pipeline/configure.js b/lib/cli/file-pipeline/configure.js index 4d081bc99..0a13c6a94 100644 --- a/lib/cli/file-pipeline/configure.js +++ b/lib/cli/file-pipeline/configure.js @@ -3,7 +3,7 @@ * @copyright 2015-2016 Titus Wormer * @license MIT * @module remark:cli:file-pipeline:configure - * @version 3.1.1 + * @version 3.1.2 * @fileoverview Configure a file. */ diff --git a/lib/cli/file-pipeline/copy.js b/lib/cli/file-pipeline/copy.js index 25eabd347..91db03754 100644 --- a/lib/cli/file-pipeline/copy.js +++ b/lib/cli/file-pipeline/copy.js @@ -3,7 +3,7 @@ * @copyright 2015-2016 Titus Wormer * @license MIT * @module remark:cli:file-pipeline:copy - * @version 3.1.1 + * @version 3.1.2 * @fileoverview Move a file. */ diff --git a/lib/cli/file-pipeline/file-system.js b/lib/cli/file-pipeline/file-system.js index 8e519446b..e6b1a38bb 100644 --- a/lib/cli/file-pipeline/file-system.js +++ b/lib/cli/file-pipeline/file-system.js @@ -3,7 +3,7 @@ * @copyright 2015-2016 Titus Wormer * @license MIT * @module remark:cli:file-pipeline:file-system - * @version 3.1.1 + * @version 3.1.2 * @fileoverview Write a file to the file system. */ diff --git a/lib/cli/file-pipeline/index.js b/lib/cli/file-pipeline/index.js index e8eb1563c..5b7bdf49f 100644 --- a/lib/cli/file-pipeline/index.js +++ b/lib/cli/file-pipeline/index.js @@ -3,7 +3,7 @@ * @copyright 2015-2016 Titus Wormer * @license MIT * @module remark:cli:file-pipeline - * @version 3.1.1 + * @version 3.1.2 * @fileoverview Process a file. */ diff --git a/lib/cli/file-pipeline/parse.js b/lib/cli/file-pipeline/parse.js index 29f6a369b..a7096b47c 100644 --- a/lib/cli/file-pipeline/parse.js +++ b/lib/cli/file-pipeline/parse.js @@ -3,7 +3,7 @@ * @copyright 2015-2016 Titus Wormer * @license MIT * @module remark:cli:file-pipeline:parse - * @version 3.1.1 + * @version 3.1.2 * @fileoverview Parse a file into an AST. */ diff --git a/lib/cli/file-pipeline/queue.js b/lib/cli/file-pipeline/queue.js index e4f751dbf..d2cdc7c93 100644 --- a/lib/cli/file-pipeline/queue.js +++ b/lib/cli/file-pipeline/queue.js @@ -3,7 +3,7 @@ * @copyright 2015-2016 Titus Wormer * @license MIT * @module remark:cli:file-pipeline:queue - * @version 3.1.1 + * @version 3.1.2 * @fileoverview Queue all files which came this far. */ diff --git a/lib/cli/file-pipeline/read.js b/lib/cli/file-pipeline/read.js index 3ae60c3f8..ae9ee3cda 100644 --- a/lib/cli/file-pipeline/read.js +++ b/lib/cli/file-pipeline/read.js @@ -3,7 +3,7 @@ * @copyright 2015-2016 Titus Wormer * @license MIT * @module remark:cli:file-pipeline:read - * @version 3.1.1 + * @version 3.1.2 * @fileoverview Read a file if not already filled. */ diff --git a/lib/cli/file-pipeline/stdout.js b/lib/cli/file-pipeline/stdout.js index b2ae34a63..67f35fdc5 100644 --- a/lib/cli/file-pipeline/stdout.js +++ b/lib/cli/file-pipeline/stdout.js @@ -3,7 +3,7 @@ * @copyright 2015-2016 Titus Wormer * @license MIT * @module remark:cli:file-pipeline:stdout - * @version 3.1.1 + * @version 3.1.2 * @fileoverview Write a file to stdout(4). */ diff --git a/lib/cli/file-pipeline/stringify.js b/lib/cli/file-pipeline/stringify.js index 6b72f407e..85d33e9ec 100644 --- a/lib/cli/file-pipeline/stringify.js +++ b/lib/cli/file-pipeline/stringify.js @@ -3,7 +3,7 @@ * @copyright 2015-2016 Titus Wormer * @license MIT * @module remark:cli:file-pipeline:stringify - * @version 3.1.1 + * @version 3.1.2 * @fileoverview Compile an AST into a file. */ diff --git a/lib/cli/file-pipeline/transform.js b/lib/cli/file-pipeline/transform.js index db8385071..9d7452bf0 100644 --- a/lib/cli/file-pipeline/transform.js +++ b/lib/cli/file-pipeline/transform.js @@ -3,7 +3,7 @@ * @copyright 2015-2016 Titus Wormer * @license MIT * @module remark:cli:file-pipeline:transform - * @version 3.1.1 + * @version 3.1.2 * @fileoverview Transform an AST associated with a file. */ diff --git a/lib/cli/file-set-pipeline/configure.js b/lib/cli/file-set-pipeline/configure.js index 9778af1b2..0086934d4 100644 --- a/lib/cli/file-set-pipeline/configure.js +++ b/lib/cli/file-set-pipeline/configure.js @@ -3,7 +3,7 @@ * @copyright 2015-2016 Titus Wormer * @license MIT * @module remark:cli:file-set-pipeline:configure - * @version 3.1.1 + * @version 3.1.2 * @fileoverview Configure a collection of files. */ diff --git a/lib/cli/file-set-pipeline/file-system.js b/lib/cli/file-set-pipeline/file-system.js index aaf0797c7..0ea0ba894 100644 --- a/lib/cli/file-set-pipeline/file-system.js +++ b/lib/cli/file-set-pipeline/file-system.js @@ -3,7 +3,7 @@ * @copyright 2015-2016 Titus Wormer * @license MIT * @module remark:cli:file-set-pipeline:traverse - * @version 3.1.1 + * @version 3.1.2 * @fileoverview Find files from the file-system. */ diff --git a/lib/cli/file-set-pipeline/index.js b/lib/cli/file-set-pipeline/index.js index d4d064883..69219b8fd 100644 --- a/lib/cli/file-set-pipeline/index.js +++ b/lib/cli/file-set-pipeline/index.js @@ -3,7 +3,7 @@ * @copyright 2015-2016 Titus Wormer * @license MIT * @module remark:cli:file-set-pipeline - * @version 3.1.1 + * @version 3.1.2 * @fileoverview Process a collection of files. */ diff --git a/lib/cli/file-set-pipeline/log.js b/lib/cli/file-set-pipeline/log.js index a3db3a57c..b02c61065 100644 --- a/lib/cli/file-set-pipeline/log.js +++ b/lib/cli/file-set-pipeline/log.js @@ -3,7 +3,7 @@ * @copyright 2015-2016 Titus Wormer * @license MIT * @module remark:cli:log - * @version 3.1.1 + * @version 3.1.2 * @fileoverview Log a file context on successful completion. */ diff --git a/lib/cli/file-set-pipeline/stdin.js b/lib/cli/file-set-pipeline/stdin.js index 6e1f222c6..dc372ed44 100644 --- a/lib/cli/file-set-pipeline/stdin.js +++ b/lib/cli/file-set-pipeline/stdin.js @@ -3,7 +3,7 @@ * @copyright 2015-2016 Titus Wormer * @license MIT * @module remark:cli:file-set-pipeline:stdin - * @version 3.1.1 + * @version 3.1.2 * @fileoverview Read from stdin. */ diff --git a/lib/cli/file-set-pipeline/transform.js b/lib/cli/file-set-pipeline/transform.js index c8e76cfd3..1b2d1a3f8 100644 --- a/lib/cli/file-set-pipeline/transform.js +++ b/lib/cli/file-set-pipeline/transform.js @@ -3,7 +3,7 @@ * @copyright 2015-2016 Titus Wormer * @license MIT * @module remark:cli:file-set-pipeline:transform - * @version 3.1.1 + * @version 3.1.2 * @fileoverview Transform all files. */ diff --git a/lib/cli/file-set.js b/lib/cli/file-set.js index 9f866d00a..2e0dbcadf 100644 --- a/lib/cli/file-set.js +++ b/lib/cli/file-set.js @@ -3,7 +3,7 @@ * @copyright 2015-2016 Titus Wormer * @license MIT * @module remark:cli:file-set - * @version 3.1.1 + * @version 3.1.2 * @fileoverview Collection of virtual files. */ diff --git a/lib/cli/finder.js b/lib/cli/finder.js index cd61e6120..dd5aeefff 100644 --- a/lib/cli/finder.js +++ b/lib/cli/finder.js @@ -3,7 +3,7 @@ * @copyright 2015-2016 Titus Wormer * @license MIT * @module remark:cli:traverser - * @version 3.1.1 + * @version 3.1.2 * @fileoverview Get applicable input files from * the file system to be processed by remark, respecting * ignored paths and applicable extensions. diff --git a/lib/cli/ignore.js b/lib/cli/ignore.js index 936c5b349..78921e735 100644 --- a/lib/cli/ignore.js +++ b/lib/cli/ignore.js @@ -3,7 +3,7 @@ * @copyright 2015-2016 Titus Wormer * @license MIT * @module remark:cli:ignore - * @version 3.1.1 + * @version 3.1.2 * @fileoverview Find remark ignore files. */ diff --git a/lib/cli/index.js b/lib/cli/index.js index a46f434d5..8fb2c4151 100644 --- a/lib/cli/index.js +++ b/lib/cli/index.js @@ -3,7 +3,7 @@ * @copyright 2015-2016 Titus Wormer * @license MIT * @module remark:cli - * @version 3.1.1 + * @version 3.1.2 * @fileoverview CLI Engine. */ diff --git a/lib/cli/spinner.js b/lib/cli/spinner.js index c4e3daab6..9eb257f25 100644 --- a/lib/cli/spinner.js +++ b/lib/cli/spinner.js @@ -3,7 +3,7 @@ * @copyright 2015-2016 Titus Wormer * @license MIT * @module remark:cli:spinner - * @version 3.1.1 + * @version 3.1.2 * @fileoverview A spinner for stdout(4). */ diff --git a/lib/cli/watch-output-cache.js b/lib/cli/watch-output-cache.js index 915cd870d..99437d884 100644 --- a/lib/cli/watch-output-cache.js +++ b/lib/cli/watch-output-cache.js @@ -2,7 +2,7 @@ * @author YJ Yang * @copyright 2015-2016 Titus Wormer * @license MIT - * @version 3.1.1 + * @version 3.1.2 * @module remark:cli:watch-output-cache * @fileoverview Cache changed files which are also watched. */ diff --git a/lib/defaults.js b/lib/defaults.js index 9f69ed71f..293e1d82d 100644 --- a/lib/defaults.js +++ b/lib/defaults.js @@ -3,7 +3,7 @@ * @copyright 2015-2016 Titus Wormer * @license MIT * @module remark:defaults - * @version 3.1.1 + * @version 3.1.2 * @fileoverview Default values for parse and * stringification settings. */ diff --git a/lib/parse.js b/lib/parse.js index ee8dc11c2..35abd9f3e 100644 --- a/lib/parse.js +++ b/lib/parse.js @@ -3,7 +3,7 @@ * @copyright 2015-2016 Titus Wormer * @license MIT * @module remark:parse - * @version 3.1.1 + * @version 3.1.2 * @fileoverview Parse a markdown document into an * abstract syntax tree. */ diff --git a/lib/stringify.js b/lib/stringify.js index e2eeb2c2b..e5d7ec522 100644 --- a/lib/stringify.js +++ b/lib/stringify.js @@ -3,7 +3,7 @@ * @copyright 2015-2016 Titus Wormer * @license MIT * @module remark:stringify - * @version 3.1.1 + * @version 3.1.2 * @fileoverview Compile an abstract syntax tree into * a markdown document. */ diff --git a/lib/utilities.js b/lib/utilities.js index 912219513..e1f22e037 100644 --- a/lib/utilities.js +++ b/lib/utilities.js @@ -3,7 +3,7 @@ * @copyright 2015-2016 Titus Wormer * @license MIT * @module remark:utilities - * @version 3.1.1 + * @version 3.1.2 * @fileoverview Collection of tiny helpers useful for * both parsing and compiling markdown. */ diff --git a/man/remark.1 b/man/remark.1 index 3bd354eb6..1aeb38067 100644 --- a/man/remark.1 +++ b/man/remark.1 @@ -1,4 +1,4 @@ -.TH "REMARK" "1" "January 2016" "3.1.1" "remark manual" +.TH "REMARK" "1" "January 2016" "3.1.2" "remark manual" .SH "NAME" \fBremark\fR - Markdown processor .SH "SYNOPSIS" diff --git a/man/remark.3 b/man/remark.3 index ae813a852..01d07f6c1 100644 --- a/man/remark.3 +++ b/man/remark.3 @@ -1,4 +1,4 @@ -.TH "REMARK" "3" "January 2016" "3.1.1" "remark manual" +.TH "REMARK" "3" "January 2016" "3.1.2" "remark manual" .SH "NAME" \fBremark\fR - Markdown processor .SH "SYNOPSIS" diff --git a/man/remarkconfig.7 b/man/remarkconfig.7 index 19e02d039..7f3754c4a 100644 --- a/man/remarkconfig.7 +++ b/man/remarkconfig.7 @@ -1,4 +1,4 @@ -.TH "REMARKCONFIG" "7" "January 2016" "3.1.1" "remark manual" +.TH "REMARKCONFIG" "7" "January 2016" "3.1.2" "remark manual" .SH "NAME" \fBremarkconfig\fR - remark configuration .SH "SYNOPSIS" diff --git a/man/remarkignore.5 b/man/remarkignore.5 index e65f6500e..12c97706d 100644 --- a/man/remarkignore.5 +++ b/man/remarkignore.5 @@ -1,4 +1,4 @@ -.TH "REMARKIGNORE" "5" "January 2016" "3.1.1" "remark manual" +.TH "REMARKIGNORE" "5" "January 2016" "3.1.2" "remark manual" .SH "NAME" \fBremarkignore\fR - remark ignore files .SH "SYNOPSIS" diff --git a/man/remarkplugin.3 b/man/remarkplugin.3 index ccb60d685..7120f9eca 100644 --- a/man/remarkplugin.3 +++ b/man/remarkplugin.3 @@ -1,4 +1,4 @@ -.TH "REMARKPLUGIN" "3" "January 2016" "3.1.1" "remark manual" +.TH "REMARKPLUGIN" "3" "January 2016" "3.1.2" "remark manual" .SH "NAME" \fBremarkplugin\fR - remark plug-in creation .SH "SYNOPSIS" diff --git a/man/remarkplugin.7 b/man/remarkplugin.7 index 3ef959527..46906abdb 100644 --- a/man/remarkplugin.7 +++ b/man/remarkplugin.7 @@ -1,4 +1,4 @@ -.TH "REMARKPLUGIN" "7" "January 2016" "3.1.1" "remark manual" +.TH "REMARKPLUGIN" "7" "January 2016" "3.1.2" "remark manual" .SH "NAME" \fBremarkplugin\fR - remark plug-in usage .SH "SYNOPSIS" diff --git a/man/remarkrc.5 b/man/remarkrc.5 index d9ed073ec..2fb3291b6 100644 --- a/man/remarkrc.5 +++ b/man/remarkrc.5 @@ -1,4 +1,4 @@ -.TH "REMARKRC" "5" "January 2016" "3.1.1" "remark manual" +.TH "REMARKRC" "5" "January 2016" "3.1.2" "remark manual" .SH "NAME" \fBremarkrc\fR - remark config files .SH "SYNOPSIS" diff --git a/man/remarksetting.7 b/man/remarksetting.7 index a3e1aedd5..cd6a11d59 100644 --- a/man/remarksetting.7 +++ b/man/remarksetting.7 @@ -1,4 +1,4 @@ -.TH "REMARKSETTING" "7" "January 2016" "3.1.1" "remark manual" +.TH "REMARKSETTING" "7" "January 2016" "3.1.2" "remark manual" .SH "NAME" \fBremarksetting\fR - remark settings .SH "SYNOPSIS" diff --git a/package.json b/package.json index a7633b709..8692b3caa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "remark", - "version": "3.1.1", + "version": "3.1.2", "description": "Markdown processor powered by plugins", "license": "MIT", "keywords": [