Fix a spacing issue in the README file and bump the version number for self update testing
This commit is contained in:
parent
91b8fb6e2c
commit
4ee0b5e692
|
@ -24,7 +24,7 @@ at the [blog post for the project][blog].
|
|||
|
||||
## Help
|
||||
```
|
||||
Markdown Resume Generator version 2.0.0 by Craig Davis
|
||||
Markdown Resume Generator version 2.0.1 by Craig Davis
|
||||
|
||||
Usage:
|
||||
[options] command [arguments]
|
||||
|
@ -49,7 +49,7 @@ Available commands:
|
|||
version Show current version information
|
||||
|
||||
```
|
||||
## Examples
|
||||
## Examples
|
||||
|
||||
Choose a template with the -t option.
|
||||
|
||||
|
|
BIN
bin/md2resume
BIN
bin/md2resume
Binary file not shown.
|
@ -8,7 +8,7 @@
|
|||
"html5"
|
||||
],
|
||||
"license": "MIT",
|
||||
"version": "2.0.0",
|
||||
"version": "2.0.1",
|
||||
"selfupdatepath": "://github.com/there4/markdown-resume/raw/master/bin/md2resume",
|
||||
"selfupdateversion": "://github.com/there4/markdown-resume/raw/master/version",
|
||||
"authors": [
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"This file locks the dependencies of your project to a known state",
|
||||
"Read more about it at http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file"
|
||||
],
|
||||
"hash": "7c8fb9a08e3469fc9aaf81003b3ba5b3",
|
||||
"hash": "bb09d0f04bf284a55264394434efff69",
|
||||
"packages": [
|
||||
{
|
||||
"name": "fabpot/php-cs-fixer",
|
||||
|
@ -811,9 +811,9 @@
|
|||
|
||||
],
|
||||
"minimum-stability": "dev",
|
||||
"stability-flags": {
|
||||
"michelf/php-smartypants": 10
|
||||
},
|
||||
"stability-flags": [
|
||||
|
||||
],
|
||||
"platform": [
|
||||
|
||||
],
|
||||
|
|
2
pakefile
2
pakefile
|
@ -100,7 +100,7 @@ function run_readme()
|
|||
$help = shell_exec("php ./md2resume_dev.php list --no-interaction");
|
||||
$output = preg_replace(
|
||||
'/('.preg_quote($startPoint).')(.*)('.preg_quote($endPoint).')/si',
|
||||
"$1\n```\n" . $help . "\n```\n $3",
|
||||
"$1\n```\n" . $help . "\n```\n$3",
|
||||
$readme
|
||||
);
|
||||
file_put_contents("README.md", $output);
|
||||
|
|
Loading…
Reference in New Issue