diff --git a/README.md b/README.md index e60dfae..8ebba77 100644 --- a/README.md +++ b/README.md @@ -155,7 +155,7 @@ minifyHtml.minifyInPlace(fs.readFileSync("source.html"), cfg);
Java -Package: [in.wilsonl.minify_html](https://search.maven.org/artifact/in.wilsonl.minify_html/minify-html) +Package: [in.wilsonl.minifyhtml](https://search.maven.org/artifact/in.wilsonl.minifyhtml/minify-html) Binding: [JNI](https://github.com/jni-rs/jni-rs) Platforms: macOS, Linux; Java 7 and higher @@ -165,7 +165,7 @@ Add as a Maven dependency: ```xml - in.wilsonl.minify_html + in.wilsonl.minifyhtml minify-html 0.2.4 diff --git a/version b/version index 8360cde..8e12e7f 100755 --- a/version +++ b/version @@ -87,17 +87,13 @@ for (const f of ['README.md', 'bench/README.md']) { } for (const f of ['java/pom.xml', 'README.md']) { - replaceInFile(f, /(minify_html<\/artifactId>\s*)\d+\.\d+\.\d+(<\/version>)/, `$1${NEW_VERSION}$2`); + replaceInFile(f, /(minify-html<\/artifactId>\s*)\d+\.\d+\.\d+(<\/version>)/, `$1${NEW_VERSION}$2`); } for (const f of ['nodejs/package.json']) { replaceInFile(f, /^(\s*"version": )"\d+\.\d+\.\d+",\s*$/m, `$1"${NEW_VERSION}",`); } -for (const f of ['python/setup.py']) { - replaceInFile(f, /^(\s*version=)"\d+\.\d+\.\d+",\s*$/m, `$1"${NEW_VERSION}",`); -} - for (const f of ['ruby/minify_html.gemspec']) { replaceInFile(f, /^(\s*spec\.version\s*=\s*)"\d+\.\d+\.\d+"\s*$/m, `$1"${NEW_VERSION}"`); }