From 85f6d9cd88bffe74e12d682a7b5e32bd2df9ac23 Mon Sep 17 00:00:00 2001 From: Wilson Lin Date: Wed, 22 Jun 2022 14:04:44 +1000 Subject: [PATCH] 0.9.2 --- README.md | 20 ++++++++++---------- bench/README.md | 2 +- cli/Cargo.toml | 2 +- java/Cargo.toml | 2 +- java/pom.xml | 2 +- nodejs/Cargo.toml | 4 ++-- nodejs/package.json | 2 +- python/main/Cargo.toml | 2 +- python/onepass/Cargo.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 +- wasm/Cargo.toml | 2 +- 15 files changed, 25 insertions(+), 25 deletions(-) diff --git a/README.md b/README.md index 95cd105..550fef9 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ View the [changelog](./CHANGELOG.md) to see the latest updates. Comparison with [html-minifier](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. @@ -36,11 +36,11 @@ Precompiled binaries are available for Linux, macOS, and Windows. ### Get -[Linux x64](https://wilsonl.in/minify-html/bin/0.9.1-linux-x86_64) | -[Linux ARM64](https://wilsonl.in/minify-html/bin/0.9.1-linux-arm64) | -[macOS x64](https://wilsonl.in/minify-html/bin/0.9.1-macos-x86_64) | -[macOS ARM64](https://wilsonl.in/minify-html/bin/0.9.1-macos-arm64) | -[Windows x64](https://wilsonl.in/minify-html/bin/0.9.1-windows-x86_64.exe) +[Linux x64](https://wilsonl.in/minify-html/bin/0.9.2-linux-x86_64) | +[Linux ARM64](https://wilsonl.in/minify-html/bin/0.9.2-linux-arm64) | +[macOS x64](https://wilsonl.in/minify-html/bin/0.9.2-macos-x86_64) | +[macOS ARM64](https://wilsonl.in/minify-html/bin/0.9.2-macos-arm64) | +[Windows x64](https://wilsonl.in/minify-html/bin/0.9.2-windows-x86_64.exe) ### Use @@ -65,7 +65,7 @@ minify-html --keep-closing-tags --minify-css /path/to/**/*.html ```toml [dependencies] -minify-html = "0.9.1" +minify-html = "0.9.2" ``` ### Use @@ -77,14 +77,14 @@ Check out the [docs](https://docs.rs/minify-html) for API and usage examples.
Deno -- Package: https://wilsonl.in/minify-html/deno/0.9.1/index.js +- Package: https://wilsonl.in/minify-html/deno/0.9.2/index.js - Binding: [WASM](https://webassembly.org/) - Platforms: All ### Use ```ts -import init, {minify} from "https://wilsonl.in/minify-html/deno/0.9.1/index.js"; +import init, {minify} from "https://wilsonl.in/minify-html/deno/0.9.2/index.js"; const encoder = new TextEncoder(); const decoder = new TextDecoder(); @@ -149,7 +149,7 @@ Add as a Maven dependency: in.wilsonl.minifyhtml minify-html - 0.9.1 + 0.9.2 ``` diff --git a/bench/README.md b/bench/README.md index c9a009e..2206840 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 5f5b163..0cf298b 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.9.1" +version = "0.9.2" authors = ["Wilson Lin "] edition = "2018" diff --git a/java/Cargo.toml b/java/Cargo.toml index cf7705e..e7afdfb 100644 --- a/java/Cargo.toml +++ b/java/Cargo.toml @@ -1,7 +1,7 @@ [package] publish = false name = "minify-html-java" -version = "0.9.1" +version = "0.9.2" authors = ["Wilson Lin "] edition = "2018" diff --git a/java/pom.xml b/java/pom.xml index 637d732..bc06cd0 100644 --- a/java/pom.xml +++ b/java/pom.xml @@ -6,7 +6,7 @@ in.wilsonl.minifyhtml minify-html - 0.9.1 + 0.9.2 minify-html Extremely fast and smart HTML + JS + CSS minifier diff --git a/nodejs/Cargo.toml b/nodejs/Cargo.toml index 9d4e24e..ad198c5 100644 --- a/nodejs/Cargo.toml +++ b/nodejs/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "minify-html-node" publish = false -version = "0.9.1" +version = "0.9.2" description = "Node.js bindings for minify-html" authors = ["Wilson Lin "] edition = "2021" @@ -10,7 +10,7 @@ edition = "2021" crate-type = ["cdylib"] [dependencies] -minify-html = "0.8.1" +minify-html = "0.9.2" [dependencies.neon] version = "0.10" diff --git a/nodejs/package.json b/nodejs/package.json index 84a8ed6..6f2cd2d 100644 --- a/nodejs/package.json +++ b/nodejs/package.json @@ -14,7 +14,7 @@ "README.md", "postinstall.js" ], - "version": "0.9.1", + "version": "0.9.2", "types": "index.d.ts", "scripts": { "build": "cargo-cp-artifact --artifact cdylib minify-html-node index.node -- cargo build --message-format=json-render-diagnostics", diff --git a/python/main/Cargo.toml b/python/main/Cargo.toml index 806c0cc..52ebb98 100644 --- a/python/main/Cargo.toml +++ b/python/main/Cargo.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.9.1" +version = "0.9.2" authors = ["Wilson Lin "] edition = "2018" diff --git a/python/onepass/Cargo.toml b/python/onepass/Cargo.toml index 0431c24..91ac1ed 100644 --- a/python/onepass/Cargo.toml +++ b/python/onepass/Cargo.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.9.1" +version = "0.9.2" authors = ["Wilson Lin "] edition = "2018" diff --git a/ruby/Cargo.toml b/ruby/Cargo.toml index 33bbc35..034c2f4 100644 --- a/ruby/Cargo.toml +++ b/ruby/Cargo.toml @@ -1,7 +1,7 @@ [package] publish = false name = "minify-html-ruby" -version = "0.9.1" +version = "0.9.2" authors = ["Wilson Lin "] edition = "2018" diff --git a/ruby/minify_html.gemspec b/ruby/minify_html.gemspec index 5e123cd..8dc7b29 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.9.1" + spec.version = "0.9.2" 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 8f94c48..19ee9bd 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.9.1" +version = "0.9.2" 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 9b8604c..c7c7005 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.9.1" +version = "0.9.2" 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 63d4cd2..13438bb 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 diff --git a/wasm/Cargo.toml b/wasm/Cargo.toml index 6e9820b..6dfeaaf 100644 --- a/wasm/Cargo.toml +++ b/wasm/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "index" publish = false -version = "0.9.1" +version = "0.9.2" authors = ["Wilson Lin "] edition = "2021"