diff --git a/Cargo.toml b/Cargo.toml index 3c0647c..6aed1d8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ readme = "README.md" keywords = ["html", "compress", "minifier", "minify", "minification"] categories = ["compression", "command-line-utilities", "development-tools::build-utils", "web-programming"] repository = "https://github.com/wilsonzlin/minify-html.git" -version = "0.2.6" +version = "0.3.0" authors = ["Wilson Lin "] edition = "2018" include = ["/src/**/*", "/Cargo.toml", "/LICENSE", "/README.md"] diff --git a/README.md b/README.md index 6510769..f458957 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ An HTML minifier meticulously optimised for both speed and effectiveness, availa 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 @@ -21,9 +21,9 @@ Precompiled binaries are available for x86-64 Linux, macOS, and Windows. ##### Get -[Linux](https://wilsonl.in/minify-html/bin/0.2.6-linux-x86_64) | -[macOS](https://wilsonl.in/minify-html/bin/0.2.6-macos-x86_64) | -[Windows](https://wilsonl.in/minify-html/bin/0.2.6-windows-x86_64) +[Linux](https://wilsonl.in/minify-html/bin/0.3.0-linux-x86_64) | +[macOS](https://wilsonl.in/minify-html/bin/0.3.0-macos-x86_64) | +[Windows](https://wilsonl.in/minify-html/bin/0.3.0-windows-x86_64) ##### Use @@ -42,7 +42,7 @@ minify-html --src /path/to/src.html --out /path/to/output.min.html ```toml [dependencies] -minify-html = { version = "0.2.6", features = ["js-esbuild"] } +minify-html = { version = "0.3.0", features = ["js-esbuild"] } ``` Building with the `js-esbuild` feature requires the Go compiler to be installed as well, to build the [JS minifier](https://github.com/evanw/esbuild). @@ -161,7 +161,7 @@ Add as a Maven dependency: in.wilsonl.minifyhtml minify-html - 0.2.6 + 0.3.0 ``` diff --git a/bench/README.md b/bench/README.md index 70f57af..75d7571 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 db366e8..edd5098 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,7 +1,7 @@ [package] publish = false name = "minify-html-cli" -version = "0.2.6" +version = "0.3.0" authors = ["Wilson Lin "] edition = "2018" diff --git a/java/Cargo.toml b/java/Cargo.toml index d4e9eb5..cd5feb9 100644 --- a/java/Cargo.toml +++ b/java/Cargo.toml @@ -1,7 +1,7 @@ [package] publish = false name = "minify-html-java" -version = "0.2.6" +version = "0.3.0" authors = ["Wilson Lin "] edition = "2018" diff --git a/java/pom.xml b/java/pom.xml index ebe71bf..cd09f3c 100644 --- a/java/pom.xml +++ b/java/pom.xml @@ -6,7 +6,7 @@ in.wilsonl.minifyhtml minify-html - 0.2.6 + 0.3.0 minify-html Fast and smart HTML + JS minifier diff --git a/nodejs/native/Cargo.toml b/nodejs/native/Cargo.toml index a53bd68..943b919 100644 --- a/nodejs/native/Cargo.toml +++ b/nodejs/native/Cargo.toml @@ -1,7 +1,7 @@ [package] publish = false name = "minify-html-ffi" -version = "0.2.6" +version = "0.3.0" authors = ["Wilson Lin "] license = "MIT" edition = "2018" diff --git a/nodejs/package.json b/nodejs/package.json index c9919c2..ab4e3a8 100644 --- a/nodejs/package.json +++ b/nodejs/package.json @@ -1,6 +1,6 @@ { "name": "@minify-html/js", - "version": "0.2.6", + "version": "0.3.0", "description": "Fast and smart HTML + JS minifier", "main": "index.node", "files": [ diff --git a/python/Cargo.toml b/python/Cargo.toml index 613f73b..88237cc 100644 --- a/python/Cargo.toml +++ b/python/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.2.6" +version = "0.3.0" authors = ["Wilson Lin "] edition = "2018" diff --git a/ruby/Cargo.toml b/ruby/Cargo.toml index 8700c77..e58244b 100644 --- a/ruby/Cargo.toml +++ b/ruby/Cargo.toml @@ -1,7 +1,7 @@ [package] publish = false name = "minify-html-ruby" -version = "0.2.6" +version = "0.3.0" authors = ["Wilson Lin "] edition = "2018" diff --git a/ruby/minify_html.gemspec b/ruby/minify_html.gemspec index 9276a76..8a60338 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.2.6" + spec.version = "0.3.0" spec.authors = ["Wilson Lin"] spec.email = ["code@wilsonl.in"] spec.license = "MIT"