From 5ef491b8239a01f59934d344070ad5eee8a8bba0 Mon Sep 17 00:00:00 2001 From: Wilson Lin Date: Sun, 8 Aug 2021 02:00:00 +1000 Subject: [PATCH] 0.5.1 --- Cargo.toml | 2 +- README.md | 12 ++++++------ 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 +- 12 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 11c7765..db95567 100644 --- a/Cargo.toml +++ b/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.5.0" +version = "0.5.1" authors = ["Wilson Lin "] edition = "2018" include = ["/src/**/*", "/Cargo.toml", "/LICENSE", "/README.md"] diff --git a/README.md b/README.md index 150f121..9acef78 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ An HTML minifier meticulously optimised for both speed and effectiveness, writte 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 and compression of HTML minifiers +Chart showing speed and compression of HTML minifiers Need even faster performance? Check the [one](https://github.com/wilsonzlin/minify-html/tree/one) branch. @@ -32,9 +32,9 @@ Precompiled binaries are available for x86-64 Linux, macOS, and Windows. ### Get -[Linux](https://wilsonl.in/minify-html/bin/0.5.0-linux-x86_64) | -[macOS](https://wilsonl.in/minify-html/bin/0.5.0-macos-x86_64) | -[Windows](https://wilsonl.in/minify-html/bin/0.5.0-windows-x86_64.exe) +[Linux](https://wilsonl.in/minify-html/bin/0.5.1-linux-x86_64) | +[macOS](https://wilsonl.in/minify-html/bin/0.5.1-macos-x86_64) | +[Windows](https://wilsonl.in/minify-html/bin/0.5.1-windows-x86_64.exe) ### Use @@ -53,7 +53,7 @@ minify-html --src /path/to/src.html --out /path/to/output.min.html --css --js ```toml [dependencies] -minify-html = { version = "0.5.0", features = ["js-esbuild"] } +minify-html = { version = "0.5.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). @@ -124,7 +124,7 @@ Add as a Maven dependency: in.wilsonl.minifyhtml minify-html - 0.5.0 + 0.5.1 ``` diff --git a/bench/README.md b/bench/README.md index b79f97c..e0ab201 100644 --- a/bench/README.md +++ b/bench/README.md @@ -35,7 +35,7 @@ For more information on how the tests are fetched, see [fetch.js](./fetch.js). On this [project's README](../README.md), average graphs are shown. Graphs showing per-test results are shown below: -Chart showing speed of HTML minifiers per test Chart showing effectiveness of HTML minifiers per test +Chart showing speed of HTML minifiers per test Chart showing effectiveness of HTML minifiers per test Since speed depends on the input, speed charts show performance relative to the Node.js minify-html as a percentage. diff --git a/cli/Cargo.toml b/cli/Cargo.toml index f6c7b07..b90ada5 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.5.0" +version = "0.5.1" authors = ["Wilson Lin "] edition = "2018" diff --git a/java/Cargo.toml b/java/Cargo.toml index c5359fa..9c03908 100644 --- a/java/Cargo.toml +++ b/java/Cargo.toml @@ -1,7 +1,7 @@ [package] publish = false name = "minify-html-java" -version = "0.5.0" +version = "0.5.1" authors = ["Wilson Lin "] edition = "2018" diff --git a/java/pom.xml b/java/pom.xml index 85107ce..127c5c6 100644 --- a/java/pom.xml +++ b/java/pom.xml @@ -6,7 +6,7 @@ in.wilsonl.minifyhtml minify-html - 0.5.0 + 0.5.1 minify-html Extremely fast and smart HTML + JS + CSS minifier diff --git a/nodejs/native/Cargo.toml b/nodejs/native/Cargo.toml index 8f0908c..a57fef7 100644 --- a/nodejs/native/Cargo.toml +++ b/nodejs/native/Cargo.toml @@ -1,7 +1,7 @@ [package] publish = false name = "minify-html-ffi" -version = "0.5.0" +version = "0.5.1" authors = ["Wilson Lin "] license = "MIT" edition = "2018" diff --git a/nodejs/package.json.gen.js b/nodejs/package.json.gen.js index 289a941..89a8ac5 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.5.0", + version: "0.5.1", 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 57e6d87..c9eadf4 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.5.0" +version = "0.5.1" authors = ["Wilson Lin "] edition = "2018" diff --git a/python/Cargo.js.toml b/python/Cargo.js.toml index 8e997b5..c7f28d5 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.5.0" +version = "0.5.1" authors = ["Wilson Lin "] edition = "2018" diff --git a/ruby/Cargo.toml b/ruby/Cargo.toml index 38f48c9..36eb8e8 100644 --- a/ruby/Cargo.toml +++ b/ruby/Cargo.toml @@ -1,7 +1,7 @@ [package] publish = false name = "minify-html-ruby" -version = "0.5.0" +version = "0.5.1" authors = ["Wilson Lin "] edition = "2018" diff --git a/ruby/minify_html.gemspec b/ruby/minify_html.gemspec index 0b51587..1d2804d 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.5.0" + spec.version = "0.5.1" spec.authors = ["Wilson Lin"] spec.email = ["code@wilsonl.in"] spec.license = "MIT"