diff --git a/CHANGELOG.md b/CHANGELOG.md index 92a32dd..de42f1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # minify-html changelog +## 0.9.2 + +- Fix Node.js dependency version. + ## 0.9.1 - Fix Node.js postinstall script. diff --git a/README.md b/README.md index 034c473..a299578 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ minify-html --output /path/to/output.min.html --keep-closing-tags --minify-css / ```toml [dependencies] -minify-html = { version = "0.9.1" } +minify-html = "0.9.1" ``` ### Use diff --git a/version b/version index a9e4637..fb5e462 100755 --- a/version +++ b/version @@ -112,10 +112,10 @@ for (const f of [ ); } -for (const f of ["README.md"]) { +for (const f of ["README.md", "nodejs/Cargo.toml"]) { replaceInFile( f, - /^(minify-html = \{ version = )"\d+\.\d+\.\d+"/m, + /^(minify-html = )"\d+\.\d+\.\d+"/m, `$1"${NEW_VERSION}"` ); }