diff --git a/Cargo.lock b/Cargo.lock index 89c4bab..32b408e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -88,7 +88,7 @@ dependencies = [ [[package]] name = "hyperbuild" -version = "0.0.21" +version = "0.0.22" dependencies = [ "cascade 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "fastrie 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 0486cb2..5ce4135 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.0.21" +version = "0.0.22" authors = ["Wilson Lin "] edition = "2018" include = ["/gen/*.json", "/src/**/*", "/build.rs", "/Cargo.toml", "/LICENSE", "/README.md"] diff --git a/README.md b/README.md index 60d32d2..476ead3 100644 --- a/README.md +++ b/README.md @@ -25,9 +25,9 @@ Speed and effectiveness of Node.js version compared to [html-minfier](https://gi ##### Get -[Windows](https://wilsonl.in/hyperbuild/bin/0.0.21-windows-x86_64.exe) | -[macOS](https://wilsonl.in/hyperbuild/bin/0.0.21-macos-x86_64) | -[Linux](https://wilsonl.in/hyperbuild/bin/0.0.21-linux-x86_64) +[Windows](https://wilsonl.in/hyperbuild/bin/0.0.22-windows-x86_64.exe) | +[macOS](https://wilsonl.in/hyperbuild/bin/0.0.22-macos-x86_64) | +[Linux](https://wilsonl.in/hyperbuild/bin/0.0.22-linux-x86_64) ##### Use @@ -44,7 +44,7 @@ hyperbuild --src /path/to/src.html --out /path/to/output.min.html ```toml [dependencies] -hyperbuild = "0.0.21" +hyperbuild = "0.0.22" ``` ##### Use @@ -99,7 +99,7 @@ hyperbuild is available via [JNI](https://github.com/jni-rs/jni-rs), and support ##### Get -Download the [JAR](https://wilsonl.in/hyperbuild/bin/0.0.21.jar) file. +Download the [JAR](https://wilsonl.in/hyperbuild/bin/0.0.22.jar) file. ##### Use @@ -124,7 +124,7 @@ hyperbuild is available as a [native module](https://github.com/PyO3/pyo3), and ##### Get -Download the native module for [Windows](https://wilsonl.in/hyperbuild/bin/0.0.21-windows-x86_64-python.pyd), [macOS](https://wilsonl.in/hyperbuild/bin/0.0.21-macos-x86_64-python.so), or [Linux](https://wilsonl.in/hyperbuild/bin/0.0.21-linux-x86_64-python.so). +Download the native module for [Windows](https://wilsonl.in/hyperbuild/bin/0.0.22-windows-x86_64-python.pyd), [macOS](https://wilsonl.in/hyperbuild/bin/0.0.22-macos-x86_64-python.so), or [Linux](https://wilsonl.in/hyperbuild/bin/0.0.22-linux-x86_64-python.so). Rename the file to `hyperbuild.pyd` on Windows or `hyperbuild.so` on macOS/Linux. @@ -147,7 +147,7 @@ hyperbuild is available as a [native module](https://github.com/danielpclark/rut ##### Get -Download and install the [gem](https://wilsonl.in/hyperbuild/bin/0.0.21.gem). +Download and install the [gem](https://wilsonl.in/hyperbuild/bin/0.0.22.gem). ##### Use diff --git a/java/Cargo.toml b/java/Cargo.toml index e811112..bc67855 100644 --- a/java/Cargo.toml +++ b/java/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "hyperbuild-java" publish = false -version = "0.0.21" +version = "0.0.22" authors = ["Wilson Lin "] edition = "2018" [dependencies] -hyperbuild = "0.0.21" +hyperbuild = "0.0.22" jni = "0.14.0" [lib] diff --git a/java/pom.xml b/java/pom.xml index 4fde0a3..487a4b6 100644 --- a/java/pom.xml +++ b/java/pom.xml @@ -6,7 +6,7 @@ in.wilsonl.hyperbuild hyperbuild - 0.0.21 + 0.0.22 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 171177a..33bbb51 100644 --- a/nodejs/native/Cargo.toml +++ b/nodejs/native/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hyperbuild-nodejs" publish = false -version = "0.0.21" +version = "0.0.22" authors = ["Wilson Lin "] license = "MIT" build = "build.rs" @@ -16,5 +16,5 @@ crate-type = ["cdylib"] neon-build = "0.3.3" [dependencies] -hyperbuild = "0.0.21" +hyperbuild = "0.0.22" neon = "0.3.3" diff --git a/nodejs/package.json b/nodejs/package.json index d033773..db9a0f2 100644 --- a/nodejs/package.json +++ b/nodejs/package.json @@ -1,6 +1,6 @@ { "name": "hyperbuild", - "version": "0.0.21", + "version": "0.0.22", "description": "Fast one-pass in-place HTML minifier written in Rust with context-aware whitespace handling", "main": "lib/index.js", "repository": { diff --git a/python/Cargo.toml b/python/Cargo.toml index 4e36513..952d99e 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hyperbuild-python" publish = false -version = "0.0.21" +version = "0.0.22" authors = ["Wilson Lin "] edition = "2018" @@ -10,7 +10,7 @@ name = "hyperbuild_python_lib" crate-type = ["cdylib"] [dependencies] -hyperbuild = "0.0.21" +hyperbuild = "0.0.22" [dependencies.pyo3] version = "0.9.0-alpha.1" features = ["extension-module"] diff --git a/ruby/Cargo.toml b/ruby/Cargo.toml index 94f85f2..a8a3296 100644 --- a/ruby/Cargo.toml +++ b/ruby/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hyperbuild-ruby" publish = false -version = "0.0.21" +version = "0.0.22" authors = ["Wilson Lin "] edition = "2018" @@ -10,5 +10,5 @@ name = "hyperbuild_ruby_lib" crate-type = ["cdylib"] [dependencies] -hyperbuild = "0.0.21" +hyperbuild = "0.0.22" rutie = "0.7.0"