From ec894e9ee7433210619ca25af836fdf88d564e0d Mon Sep 17 00:00:00 2001 From: Wilson Lin Date: Wed, 15 Dec 2021 15:30:50 +1100 Subject: [PATCH] 0.8.0 --- 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 b4f1044..8a86c1f 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.7.2-linux-x86_64) | -[Linux ARM64](https://wilsonl.in/minify-html/bin/0.7.2-linux-arm64) | -[macOS x64](https://wilsonl.in/minify-html/bin/0.7.2-macos-x86_64) | -[macOS ARM64](https://wilsonl.in/minify-html/bin/0.7.2-macos-arm64) | -[Windows x64](https://wilsonl.in/minify-html/bin/0.7.2-windows-x86_64.exe) +[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) ### Use @@ -55,7 +55,7 @@ minify-html --output /path/to/output.min.html --keep-closing-tags --minify-css / ```toml [dependencies] -minify-html = { version = "0.7.2", features = ["js-esbuild"] } +minify-html = { version = "0.8.0", 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.7.2 + 0.8.0 ``` diff --git a/bench/README.md b/bench/README.md index 1b8285f..f1f317b 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 91431b5..eeeb4db 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.7.2" +version = "0.8.0" authors = ["Wilson Lin "] edition = "2018" diff --git a/java/Cargo.toml b/java/Cargo.toml index 748c3d6..0ff9a52 100644 --- a/java/Cargo.toml +++ b/java/Cargo.toml @@ -1,7 +1,7 @@ [package] publish = false name = "minify-html-java" -version = "0.7.2" +version = "0.8.0" authors = ["Wilson Lin "] edition = "2018" diff --git a/java/pom.xml b/java/pom.xml index d9b9a3e..4ef23ff 100644 --- a/java/pom.xml +++ b/java/pom.xml @@ -6,7 +6,7 @@ in.wilsonl.minifyhtml minify-html - 0.7.2 + 0.8.0 minify-html Extremely fast and smart HTML + JS + CSS minifier diff --git a/nodejs/native/Cargo.toml b/nodejs/native/Cargo.toml index 821ace3..9241e0a 100644 --- a/nodejs/native/Cargo.toml +++ b/nodejs/native/Cargo.toml @@ -1,7 +1,7 @@ [package] publish = false name = "minify-html-ffi" -version = "0.7.2" +version = "0.8.0" authors = ["Wilson Lin "] license = "MIT" edition = "2018" diff --git a/nodejs/package.json.gen.js b/nodejs/package.json.gen.js index d429f69..ec5d318 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.7.2", + version: "0.8.0", main: "index.node", types: "index.d.ts", files: ["cli.js", "postinstall.js", "index.d.ts"], diff --git a/python/Cargo.core.toml b/python/Cargo.core.toml index c96bbfd..37685c4 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.7.2" +version = "0.8.0" authors = ["Wilson Lin "] edition = "2018" diff --git a/python/Cargo.js.toml b/python/Cargo.js.toml index 4a2fd63..2981f1c 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.7.2" +version = "0.8.0" authors = ["Wilson Lin "] edition = "2018" diff --git a/ruby/Cargo.toml b/ruby/Cargo.toml index a358474..88ea16c 100644 --- a/ruby/Cargo.toml +++ b/ruby/Cargo.toml @@ -1,7 +1,7 @@ [package] publish = false name = "minify-html-ruby" -version = "0.7.2" +version = "0.8.0" authors = ["Wilson Lin "] edition = "2018" diff --git a/ruby/minify_html.gemspec b/ruby/minify_html.gemspec index bb4f951..710bf12 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.7.2" + spec.version = "0.8.0" 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 c21ed74..67db780 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.7.2" +version = "0.8.0" 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 6e91bd6..aab7ed3 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.7.2" +version = "0.8.0" 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 58455d1..bea2a4a 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