From 337de1fcd9c7a79c8b0846051835a9cf8c499f73 Mon Sep 17 00:00:00 2001 From: Wilson Lin Date: Fri, 17 Jun 2022 11:59:21 +1000 Subject: [PATCH] 0.8.1 --- README.md | 16 ++++++++-------- 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, 21 insertions(+), 21 deletions(-) diff --git a/README.md b/README.md index 7c1150d..299ed6e 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,11 +32,11 @@ Precompiled binaries are available for Linux, macOS, and Windows. ### Get -[Linux x64](https://wilsonl.in/minify-html/bin/0.8.0-linux-x86_64) | -[Linux ARM64](https://wilsonl.in/minify-html/bin/0.8.0-linux-arm64) | -[macOS x64](https://wilsonl.in/minify-html/bin/0.8.0-macos-x86_64) | -[macOS ARM64](https://wilsonl.in/minify-html/bin/0.8.0-macos-arm64) | -[Windows x64](https://wilsonl.in/minify-html/bin/0.8.0-windows-x86_64.exe) +[Linux x64](https://wilsonl.in/minify-html/bin/0.8.1-linux-x86_64) | +[Linux ARM64](https://wilsonl.in/minify-html/bin/0.8.1-linux-arm64) | +[macOS x64](https://wilsonl.in/minify-html/bin/0.8.1-macos-x86_64) | +[macOS ARM64](https://wilsonl.in/minify-html/bin/0.8.1-macos-arm64) | +[Windows x64](https://wilsonl.in/minify-html/bin/0.8.1-windows-x86_64.exe) ### Use @@ -55,7 +55,7 @@ minify-html --output /path/to/output.min.html --keep-closing-tags --minify-css / ```toml [dependencies] -minify-html = { version = "0.8.0", features = ["js-esbuild"] } +minify-html = { version = "0.8.1", 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). @@ -120,7 +120,7 @@ Add as a Maven dependency: in.wilsonl.minifyhtml minify-html - 0.8.0 + 0.8.1 ``` diff --git a/bench/README.md b/bench/README.md index f1f317b..3f765ee 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 eeeb4db..74e9277 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.8.0" +version = "0.8.1" authors = ["Wilson Lin "] edition = "2018" diff --git a/java/Cargo.toml b/java/Cargo.toml index 0ff9a52..1ba6160 100644 --- a/java/Cargo.toml +++ b/java/Cargo.toml @@ -1,7 +1,7 @@ [package] publish = false name = "minify-html-java" -version = "0.8.0" +version = "0.8.1" authors = ["Wilson Lin "] edition = "2018" diff --git a/java/pom.xml b/java/pom.xml index 4ef23ff..67ca512 100644 --- a/java/pom.xml +++ b/java/pom.xml @@ -6,7 +6,7 @@ in.wilsonl.minifyhtml minify-html - 0.8.0 + 0.8.1 minify-html Extremely fast and smart HTML + JS + CSS minifier diff --git a/nodejs/native/Cargo.toml b/nodejs/native/Cargo.toml index 9241e0a..265b356 100644 --- a/nodejs/native/Cargo.toml +++ b/nodejs/native/Cargo.toml @@ -1,7 +1,7 @@ [package] publish = false name = "minify-html-ffi" -version = "0.8.0" +version = "0.8.1" authors = ["Wilson Lin "] license = "MIT" edition = "2018" diff --git a/nodejs/package.json.gen.js b/nodejs/package.json.gen.js index 08d04df..8bdabb9 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.8.0", + version: "0.8.1", main: "index.js", types: "index.d.ts", files: ["cli.js", "postinstall.js", "index.d.ts", "index.js"], diff --git a/python/Cargo.core.toml b/python/Cargo.core.toml index 37685c4..f3bb49f 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.8.0" +version = "0.8.1" authors = ["Wilson Lin "] edition = "2018" diff --git a/python/Cargo.js.toml b/python/Cargo.js.toml index 2981f1c..800fe76 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.8.0" +version = "0.8.1" authors = ["Wilson Lin "] edition = "2018" diff --git a/ruby/Cargo.toml b/ruby/Cargo.toml index 88ea16c..57698a5 100644 --- a/ruby/Cargo.toml +++ b/ruby/Cargo.toml @@ -1,7 +1,7 @@ [package] publish = false name = "minify-html-ruby" -version = "0.8.0" +version = "0.8.1" authors = ["Wilson Lin "] edition = "2018" diff --git a/ruby/minify_html.gemspec b/ruby/minify_html.gemspec index 710bf12..ef2211a 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.8.0" + spec.version = "0.8.1" 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 67db780..1ad7a6c 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.8.0" +version = "0.8.1" 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 aab7ed3..34a902e 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.8.0" +version = "0.8.1" 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 bea2a4a..fe11cbd 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