From e6637b249511acabdfda3403833d7db51b17edde Mon Sep 17 00:00:00 2001 From: Wilson Lin Date: Mon, 9 Aug 2021 23:23:03 +1000 Subject: [PATCH] 0.6.5 --- README.md | 14 +++++++------- bench/README.md | 2 +- cli/Cargo.toml | 2 +- java/Cargo.toml | 2 +- java/pom.xml | 2 +- nodejs/native/Cargo.toml | 2 +- nodejs/package.json.gen.js | 2 +- python/Cargo.core.toml | 2 +- python/Cargo.js.toml | 2 +- ruby/Cargo.toml | 2 +- ruby/minify_html.gemspec | 2 +- rust/main/Cargo.toml | 2 +- rust/onepass/Cargo.toml | 2 +- rust/onepass/README.md | 2 +- 14 files changed, 20 insertions(+), 20 deletions(-) diff --git a/README.md b/README.md index deb98ed..57fdb3e 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ A Rust HTML minifier meticulously optimised for speed and effectiveness, with bi Comparison with [html-minfier](https://github.com/kangax/html-minifier) and [minimize](https://github.com/Swaagie/minimize), run on the top web pages. [See the breakdown here.](./bench) -Chart showing speed of HTML minifiersChart showing compression of HTML minifiers +Chart showing speed of HTML minifiersChart showing compression of HTML minifiers The [onepass](https://github.com/wilsonzlin/minify-html/tree/master/rust/onepass) variant is even more optimised for speed. See its [README](https://github.com/wilsonzlin/minify-html/tree/master/rust/onepass) for more details. @@ -32,10 +32,10 @@ Precompiled binaries are available for Linux, macOS, and Windows. ### Get -[Linux x86-64](https://wilsonl.in/minify-html/bin/0.6.4-linux-x86_64) | -[Linux ARM](https://wilsonl.in/minify-html/bin/0.6.4-linux-arm64) | -[macOS](https://wilsonl.in/minify-html/bin/0.6.4-macos-x86_64) | -[Windows](https://wilsonl.in/minify-html/bin/0.6.4-windows-x86_64.exe) +[Linux x86-64](https://wilsonl.in/minify-html/bin/0.6.5-linux-x86_64) | +[Linux ARM](https://wilsonl.in/minify-html/bin/0.6.5-linux-arm64) | +[macOS](https://wilsonl.in/minify-html/bin/0.6.5-macos-x86_64) | +[Windows](https://wilsonl.in/minify-html/bin/0.6.5-windows-x86_64.exe) ### Use @@ -54,7 +54,7 @@ minify-html --output /path/to/output.min.html --keep-closing-tags --minify-css / ```toml [dependencies] -minify-html = { version = "0.6.4", features = ["js-esbuild"] } +minify-html = { version = "0.6.5", features = ["js-esbuild"] } ``` Building with the `js-esbuild` feature requires the Go compiler to be installed as well, to build the [JS and CSS minifier](https://github.com/wilsonzlin/esbuild-rs). @@ -125,7 +125,7 @@ Add as a Maven dependency: in.wilsonl.minifyhtml minify-html - 0.6.4 + 0.6.5 ``` diff --git a/bench/README.md b/bench/README.md index e5b26d8..e874bbb 100644 --- a/bench/README.md +++ b/bench/README.md @@ -30,7 +30,7 @@ For more information on how the inputs are fetched, see [fetch.js](./fetch.js). On this [project's README](../README.md), average graphs are shown. Graphs showing per-input results are shown below: -Chart showing speed of HTML minifiers per inputChart showing effectiveness of HTML minifiers per input +Chart showing speed of HTML minifiers per inputChart showing effectiveness of HTML minifiers per input Results depend on the input, so charts show performance relative to minify-html as a percentage. diff --git a/cli/Cargo.toml b/cli/Cargo.toml index eddd7d6..8a7e924 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -2,7 +2,7 @@ publish = false name = "minify-html-cli" description = "Extremely fast and smart HTML + JS + CSS minifier" -version = "0.6.4" +version = "0.6.5" authors = ["Wilson Lin "] edition = "2018" diff --git a/java/Cargo.toml b/java/Cargo.toml index 98b1f78..227edf2 100644 --- a/java/Cargo.toml +++ b/java/Cargo.toml @@ -1,7 +1,7 @@ [package] publish = false name = "minify-html-java" -version = "0.6.4" +version = "0.6.5" authors = ["Wilson Lin "] edition = "2018" diff --git a/java/pom.xml b/java/pom.xml index 98b639f..208e74b 100644 --- a/java/pom.xml +++ b/java/pom.xml @@ -6,7 +6,7 @@ in.wilsonl.minifyhtml minify-html - 0.6.4 + 0.6.5 minify-html Extremely fast and smart HTML + JS + CSS minifier diff --git a/nodejs/native/Cargo.toml b/nodejs/native/Cargo.toml index c8cf912..844d4c7 100644 --- a/nodejs/native/Cargo.toml +++ b/nodejs/native/Cargo.toml @@ -1,7 +1,7 @@ [package] publish = false name = "minify-html-ffi" -version = "0.6.4" +version = "0.6.5" authors = ["Wilson Lin "] license = "MIT" edition = "2018" diff --git a/nodejs/package.json.gen.js b/nodejs/package.json.gen.js index d373ea2..d0d7603 100644 --- a/nodejs/package.json.gen.js +++ b/nodejs/package.json.gen.js @@ -1,7 +1,7 @@ const fs = require("fs"); const common = { - version: "0.6.4", + version: "0.6.5", main: "index.node", types: "index.d.ts", files: ["postinstall.js", "index.d.ts"], diff --git a/python/Cargo.core.toml b/python/Cargo.core.toml index 843bf0c..a60a5fa 100644 --- a/python/Cargo.core.toml +++ b/python/Cargo.core.toml @@ -6,7 +6,7 @@ license = "MIT" homepage = "https://github.com/wilsonzlin/minify-html" readme = "README.md" repository = "https://github.com/wilsonzlin/minify-html.git" -version = "0.6.4" +version = "0.6.5" authors = ["Wilson Lin "] edition = "2018" diff --git a/python/Cargo.js.toml b/python/Cargo.js.toml index 30ba73f..26c1068 100644 --- a/python/Cargo.js.toml +++ b/python/Cargo.js.toml @@ -6,7 +6,7 @@ license = "MIT" homepage = "https://github.com/wilsonzlin/minify-html" readme = "README.md" repository = "https://github.com/wilsonzlin/minify-html.git" -version = "0.6.4" +version = "0.6.5" authors = ["Wilson Lin "] edition = "2018" diff --git a/ruby/Cargo.toml b/ruby/Cargo.toml index fb07b03..f26c467 100644 --- a/ruby/Cargo.toml +++ b/ruby/Cargo.toml @@ -1,7 +1,7 @@ [package] publish = false name = "minify-html-ruby" -version = "0.6.4" +version = "0.6.5" authors = ["Wilson Lin "] edition = "2018" diff --git a/ruby/minify_html.gemspec b/ruby/minify_html.gemspec index b52e9ee..c208798 100644 --- a/ruby/minify_html.gemspec +++ b/ruby/minify_html.gemspec @@ -2,7 +2,7 @@ require 'rake' Gem::Specification.new do |spec| spec.name = "minify_html" - spec.version = "0.6.4" + spec.version = "0.6.5" spec.authors = ["Wilson Lin"] spec.email = ["code@wilsonl.in"] spec.license = "MIT" diff --git a/rust/main/Cargo.toml b/rust/main/Cargo.toml index a9ae1ed..21d6dcd 100644 --- a/rust/main/Cargo.toml +++ b/rust/main/Cargo.toml @@ -7,7 +7,7 @@ readme = "README.md" keywords = ["html", "compress", "minifier", "js", "css"] categories = ["compression", "command-line-utilities", "development-tools::build-utils", "web-programming"] repository = "https://github.com/wilsonzlin/minify-html.git" -version = "0.6.4" +version = "0.6.5" authors = ["Wilson Lin "] edition = "2018" include = ["/src/**/*", "/Cargo.toml", "/LICENSE", "/README.md"] diff --git a/rust/onepass/Cargo.toml b/rust/onepass/Cargo.toml index 86f9023..07327e5 100644 --- a/rust/onepass/Cargo.toml +++ b/rust/onepass/Cargo.toml @@ -7,7 +7,7 @@ readme = "README.md" keywords = ["html", "compress", "minifier", "js", "css"] categories = ["compression", "command-line-utilities", "development-tools::build-utils", "web-programming"] repository = "https://github.com/wilsonzlin/minify-html.git" -version = "0.6.4" +version = "0.6.5" authors = ["Wilson Lin "] edition = "2018" include = ["/src/**/*", "/Cargo.toml", "/LICENSE", "/README.md"] diff --git a/rust/onepass/README.md b/rust/onepass/README.md index c4bd7d6..13d258e 100644 --- a/rust/onepass/README.md +++ b/rust/onepass/README.md @@ -8,7 +8,7 @@ An HTML minifier that provides the functionality of [minify-html](https://github ## Performance -Chart showing speed of HTML minifiers +Chart showing speed of HTML minifiers ## Usage