From 9e42f25c216836a2c5409c7dde24d44157ad9d68 Mon Sep 17 00:00:00 2001 From: Wilson Lin Date: Fri, 3 Jul 2020 21:20:27 +1000 Subject: [PATCH] 0.1.6 --- Cargo.toml | 2 +- README.md | 12 ++++++------ bench/README.md | 2 +- cli/Cargo.toml | 4 ++-- java/Cargo.toml | 4 ++-- java/pom.xml | 2 +- nodejs/native/Cargo.toml | 4 ++-- nodejs/package.json | 2 +- python/Cargo.toml | 4 ++-- python/setup.py | 2 +- ruby/Cargo.toml | 4 ++-- ruby/hyperbuild.gemspec | 2 +- 12 files changed, 22 insertions(+), 22 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5227023..bd7e6d0 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/hyperbuild.git" -version = "0.1.5" +version = "0.1.6" authors = ["Wilson Lin "] edition = "2018" include = ["/src/**/*", "/Cargo.toml", "/LICENSE", "/README.md"] diff --git a/README.md b/README.md index 78d56f6..6403231 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Available as: Speed and effectiveness of Node.js version compared to [html-minfier](https://github.com/kangax/html-minifier) and [minimize](https://github.com/Swaagie/minimize), run on popular already-minified web pages. See [bench](./bench) folder for more details. -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 @@ -27,9 +27,9 @@ Precompiled binaries are available for x86-64 Windows, macOS, and Linux. ##### Get -[Windows](https://wilsonl.in/hyperbuild/bin/0.1.5-windows-x86_64.exe) | -[macOS](https://wilsonl.in/hyperbuild/bin/0.1.5-macos-x86_64) | -[Linux](https://wilsonl.in/hyperbuild/bin/0.1.5-linux-x86_64) +[Windows](https://wilsonl.in/hyperbuild/bin/0.1.6-windows-x86_64.exe) | +[macOS](https://wilsonl.in/hyperbuild/bin/0.1.6-macos-x86_64) | +[Linux](https://wilsonl.in/hyperbuild/bin/0.1.6-linux-x86_64) ##### Use @@ -46,7 +46,7 @@ hyperbuild --src /path/to/src.html --out /path/to/output.min.html ```toml [dependencies] -hyperbuild = "0.1.5" +hyperbuild = "0.1.6" ``` ##### Use @@ -150,7 +150,7 @@ Add as a Maven dependency: in.wilsonl.hyperbuild hyperbuild - 0.1.5 + 0.1.6 ``` diff --git a/bench/README.md b/bench/README.md index 423a389..df0a69d 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 hyperbuild-nodejs as a percentage. diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 6c8c2eb..e23aeee 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,10 +1,10 @@ [package] name = "hyperbuild-cli" publish = false -version = "0.1.5" +version = "0.1.6" authors = ["Wilson Lin "] edition = "2018" [dependencies] -hyperbuild = "0.1.5" +hyperbuild = "0.1.6" structopt = "0.3.5" diff --git a/java/Cargo.toml b/java/Cargo.toml index f307623..1794252 100644 --- a/java/Cargo.toml +++ b/java/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "hyperbuild-java" publish = false -version = "0.1.5" +version = "0.1.6" authors = ["Wilson Lin "] edition = "2018" [dependencies] -hyperbuild = "0.1.5" +hyperbuild = "0.1.6" jni = "0.14.0" [lib] diff --git a/java/pom.xml b/java/pom.xml index 28c7d7d..4ff8f38 100644 --- a/java/pom.xml +++ b/java/pom.xml @@ -6,7 +6,7 @@ in.wilsonl.hyperbuild hyperbuild - 0.1.5 + 0.1.6 hyperbuild Fast one-pass in-place HTML minifier written in Rust with context-aware whitespace handling diff --git a/nodejs/native/Cargo.toml b/nodejs/native/Cargo.toml index 0da3aa2..444fc0b 100644 --- a/nodejs/native/Cargo.toml +++ b/nodejs/native/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hyperbuild-nodejs" publish = false -version = "0.1.5" +version = "0.1.6" authors = ["Wilson Lin "] license = "MIT" build = "build.rs" @@ -16,5 +16,5 @@ crate-type = ["cdylib"] neon-build = "0.3.3" [dependencies] -hyperbuild = "0.1.5" +hyperbuild = "0.1.6" neon = "0.3.3" diff --git a/nodejs/package.json b/nodejs/package.json index 7438ee0..2f152b9 100644 --- a/nodejs/package.json +++ b/nodejs/package.json @@ -1,6 +1,6 @@ { "name": "hyperbuild", - "version": "0.1.5", + "version": "0.1.6", "description": "Fast one-pass in-place HTML minifier written in Rust with context-aware whitespace handling", "main": "dist/index.js", "files": [ diff --git a/python/Cargo.toml b/python/Cargo.toml index 6bdc8f1..4ac769c 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hyperbuild-python" publish = false -version = "0.1.5" +version = "0.1.6" authors = ["Wilson Lin "] edition = "2018" @@ -10,7 +10,7 @@ name = "hyperbuild_python_lib" crate-type = ["cdylib"] [dependencies] -hyperbuild = "0.1.5" +hyperbuild = "0.1.6" [dependencies.pyo3] version = "0.11.1" features = ["extension-module"] diff --git a/python/setup.py b/python/setup.py index c3f94e8..351884e 100644 --- a/python/setup.py +++ b/python/setup.py @@ -5,7 +5,7 @@ with open("README.md", "r") as fh: setuptools.setup( name="hyperbuild", - version="0.1.5", + version="0.1.6", author="Wilson Lin", author_email="code@wilsonl.in", description="Fast one-pass in-place HTML minifier written in Rust with context-aware whitespace handling", diff --git a/ruby/Cargo.toml b/ruby/Cargo.toml index ff6b057..b1b9aeb 100644 --- a/ruby/Cargo.toml +++ b/ruby/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hyperbuild-ruby" publish = false -version = "0.1.5" +version = "0.1.6" authors = ["Wilson Lin "] edition = "2018" @@ -10,5 +10,5 @@ name = "hyperbuild_ruby_lib" crate-type = ["cdylib"] [dependencies] -hyperbuild = "0.1.5" +hyperbuild = "0.1.6" rutie = "0.7.0" diff --git a/ruby/hyperbuild.gemspec b/ruby/hyperbuild.gemspec index 9f6ce8a..3d59fb0 100644 --- a/ruby/hyperbuild.gemspec +++ b/ruby/hyperbuild.gemspec @@ -2,7 +2,7 @@ require 'rake' Gem::Specification.new do |spec| spec.name = "hyperbuild" - spec.version = "0.1.5" + spec.version = "0.1.6" spec.authors = ["Wilson Lin"] spec.email = ["code@wilsonl.in"] spec.license = "MIT"