From 1b39178914e8b44c6efc2b62c07e057ffa09dfa8 Mon Sep 17 00:00:00 2001 From: Wilson Lin Date: Tue, 10 Aug 2021 16:13:22 +1000 Subject: [PATCH] 0.6.7 --- 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 022e8ce..f06f3c6 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.6-linux-x86_64) | -[Linux ARM](https://wilsonl.in/minify-html/bin/0.6.6-linux-arm64) | -[macOS](https://wilsonl.in/minify-html/bin/0.6.6-macos-x86_64) | -[Windows](https://wilsonl.in/minify-html/bin/0.6.6-windows-x86_64.exe) +[Linux x86-64](https://wilsonl.in/minify-html/bin/0.6.7-linux-x86_64) | +[Linux ARM](https://wilsonl.in/minify-html/bin/0.6.7-linux-arm64) | +[macOS](https://wilsonl.in/minify-html/bin/0.6.7-macos-x86_64) | +[Windows](https://wilsonl.in/minify-html/bin/0.6.7-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.6", features = ["js-esbuild"] } +minify-html = { version = "0.6.7", 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.6 + 0.6.7 ``` diff --git a/bench/README.md b/bench/README.md index b4e5010..93d2ed3 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 9199a70..b9cf89a 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.6" +version = "0.6.7" authors = ["Wilson Lin "] edition = "2018" diff --git a/java/Cargo.toml b/java/Cargo.toml index 811ff40..1f69714 100644 --- a/java/Cargo.toml +++ b/java/Cargo.toml @@ -1,7 +1,7 @@ [package] publish = false name = "minify-html-java" -version = "0.6.6" +version = "0.6.7" authors = ["Wilson Lin "] edition = "2018" diff --git a/java/pom.xml b/java/pom.xml index 286087a..8f78cd4 100644 --- a/java/pom.xml +++ b/java/pom.xml @@ -6,7 +6,7 @@ in.wilsonl.minifyhtml minify-html - 0.6.6 + 0.6.7 minify-html Extremely fast and smart HTML + JS + CSS minifier diff --git a/nodejs/native/Cargo.toml b/nodejs/native/Cargo.toml index 65d7033..d654ead 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.6" +version = "0.6.7" authors = ["Wilson Lin "] license = "MIT" edition = "2018" diff --git a/nodejs/package.json.gen.js b/nodejs/package.json.gen.js index ed57e4f..b24fcff 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.6", + version: "0.6.7", 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 e01ac76..3055672 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.6" +version = "0.6.7" authors = ["Wilson Lin "] edition = "2018" diff --git a/python/Cargo.js.toml b/python/Cargo.js.toml index eaf3434..8aa503d 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.6" +version = "0.6.7" authors = ["Wilson Lin "] edition = "2018" diff --git a/ruby/Cargo.toml b/ruby/Cargo.toml index b12a599..71234a0 100644 --- a/ruby/Cargo.toml +++ b/ruby/Cargo.toml @@ -1,7 +1,7 @@ [package] publish = false name = "minify-html-ruby" -version = "0.6.6" +version = "0.6.7" authors = ["Wilson Lin "] edition = "2018" diff --git a/ruby/minify_html.gemspec b/ruby/minify_html.gemspec index f0fac83..2dffd52 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.6" + spec.version = "0.6.7" 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 6ac32b2..890baaa 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.6" +version = "0.6.7" 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 5daae7e..80b36d1 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.6" +version = "0.6.7" 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 867e2ee..240a26b 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