diff --git a/Cargo.toml b/Cargo.toml index 23bf0a5..7ca1512 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.4.8" +version = "0.4.9" authors = ["Wilson Lin "] edition = "2018" include = ["/src/**/*", "/Cargo.toml", "/LICENSE", "/README.md"] diff --git a/README.md b/README.md index 7e1319a..bea9b44 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Comes with native bindings to Node.js, Python, Java, and Ruby. 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 minifiers Chart showing effectiveness of HTML minifiers +Chart showing speed of HTML minifiers Chart showing effectiveness of HTML minifiers ## Usage @@ -22,9 +22,9 @@ Precompiled binaries are available for x86-64 Linux, macOS, and Windows. ##### Get -[Linux](https://wilsonl.in/minify-html/bin/0.4.8-linux-x86_64) | -[macOS](https://wilsonl.in/minify-html/bin/0.4.8-macos-x86_64) | -[Windows](https://wilsonl.in/minify-html/bin/0.4.8-windows-x86_64.exe) +[Linux](https://wilsonl.in/minify-html/bin/0.4.9-linux-x86_64) | +[macOS](https://wilsonl.in/minify-html/bin/0.4.9-macos-x86_64) | +[Windows](https://wilsonl.in/minify-html/bin/0.4.9-windows-x86_64.exe) ##### Use @@ -43,7 +43,7 @@ minify-html --src /path/to/src.html --out /path/to/output.min.html --css --js ```toml [dependencies] -minify-html = { version = "0.4.8", features = ["js-esbuild"] } +minify-html = { version = "0.4.9", 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.4.8 + 0.4.9 ``` diff --git a/bench/README.md b/bench/README.md index 2635d1d..4cc502d 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 27d24b9..cd751f5 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.4.8" +version = "0.4.9" authors = ["Wilson Lin "] edition = "2018" diff --git a/java/Cargo.toml b/java/Cargo.toml index 252bd2a..ae7e125 100644 --- a/java/Cargo.toml +++ b/java/Cargo.toml @@ -1,7 +1,7 @@ [package] publish = false name = "minify-html-java" -version = "0.4.8" +version = "0.4.9" authors = ["Wilson Lin "] edition = "2018" diff --git a/java/pom.xml b/java/pom.xml index 0ed3ce5..e3448d3 100644 --- a/java/pom.xml +++ b/java/pom.xml @@ -6,7 +6,7 @@ in.wilsonl.minifyhtml minify-html - 0.4.8 + 0.4.9 minify-html Extremely fast and smart HTML + JS + CSS minifier diff --git a/nodejs/native/Cargo.toml b/nodejs/native/Cargo.toml index 1ab19d5..b26bc49 100644 --- a/nodejs/native/Cargo.toml +++ b/nodejs/native/Cargo.toml @@ -1,7 +1,7 @@ [package] publish = false name = "minify-html-ffi" -version = "0.4.8" +version = "0.4.9" authors = ["Wilson Lin "] license = "MIT" edition = "2018" diff --git a/nodejs/package.json.gen.js b/nodejs/package.json.gen.js index 456cb08..58d995f 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.4.8", + version: "0.4.9", 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 cecc111..3ab3a0d 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.4.8" +version = "0.4.9" authors = ["Wilson Lin "] edition = "2018" diff --git a/python/Cargo.js.toml b/python/Cargo.js.toml index 1a52ff1..99f7306 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.4.8" +version = "0.4.9" authors = ["Wilson Lin "] edition = "2018" diff --git a/ruby/Cargo.toml b/ruby/Cargo.toml index 241f692..772b06a 100644 --- a/ruby/Cargo.toml +++ b/ruby/Cargo.toml @@ -1,7 +1,7 @@ [package] publish = false name = "minify-html-ruby" -version = "0.4.8" +version = "0.4.9" authors = ["Wilson Lin "] edition = "2018" diff --git a/ruby/minify_html.gemspec b/ruby/minify_html.gemspec index 42edc67..b166eb7 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.4.8" + spec.version = "0.4.9" spec.authors = ["Wilson Lin"] spec.email = ["code@wilsonl.in"] spec.license = "MIT"