diff --git a/Cargo.lock b/Cargo.lock index 6dbb091..a05a9a0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -88,7 +88,7 @@ dependencies = [ [[package]] name = "hyperbuild" -version = "0.0.30" +version = "0.0.31" 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 47a48ae..9883f33 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.30" +version = "0.0.31" 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 2d4a485..c48672b 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.30-windows-x86_64.exe) | -[macOS](https://wilsonl.in/hyperbuild/bin/0.0.30-macos-x86_64) | -[Linux](https://wilsonl.in/hyperbuild/bin/0.0.30-linux-x86_64) +[Windows](https://wilsonl.in/hyperbuild/bin/0.0.31-windows-x86_64.exe) | +[macOS](https://wilsonl.in/hyperbuild/bin/0.0.31-macos-x86_64) | +[Linux](https://wilsonl.in/hyperbuild/bin/0.0.31-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.30" +hyperbuild = "0.0.31" ``` ##### Use @@ -105,7 +105,7 @@ Add as a Maven dependency: in.wilsonl.hyperbuild hyperbuild - 0.0.30 + 0.0.31 ``` @@ -130,7 +130,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.30-windows-x86_64-python.pyd), [macOS](https://wilsonl.in/hyperbuild/bin/0.0.30-macos-x86_64-python.so), or [Linux](https://wilsonl.in/hyperbuild/bin/0.0.30-linux-x86_64-python.so). +Download the native module for [Windows](https://wilsonl.in/hyperbuild/bin/0.0.31-windows-x86_64-python.pyd), [macOS](https://wilsonl.in/hyperbuild/bin/0.0.31-macos-x86_64-python.so), or [Linux](https://wilsonl.in/hyperbuild/bin/0.0.31-linux-x86_64-python.so). Rename the file to `hyperbuild.pyd` on Windows or `hyperbuild.so` on macOS/Linux. diff --git a/java/Cargo.toml b/java/Cargo.toml index a10d19c..c9c8c17 100644 --- a/java/Cargo.toml +++ b/java/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "hyperbuild-java" publish = false -version = "0.0.30" +version = "0.0.31" authors = ["Wilson Lin "] edition = "2018" [dependencies] -hyperbuild = "0.0.30" +hyperbuild = "0.0.31" jni = "0.14.0" [lib] diff --git a/java/pom.xml b/java/pom.xml index 76329b8..cfa45a2 100644 --- a/java/pom.xml +++ b/java/pom.xml @@ -6,7 +6,7 @@ in.wilsonl.hyperbuild hyperbuild - 0.0.30 + 0.0.31 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 4fb5edd..409c37e 100644 --- a/nodejs/native/Cargo.toml +++ b/nodejs/native/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hyperbuild-nodejs" publish = false -version = "0.0.30" +version = "0.0.31" authors = ["Wilson Lin "] license = "MIT" build = "build.rs" @@ -16,5 +16,5 @@ crate-type = ["cdylib"] neon-build = "0.3.3" [dependencies] -hyperbuild = "0.0.30" +hyperbuild = "0.0.31" neon = "0.3.3" diff --git a/nodejs/package.json b/nodejs/package.json index 3fc27f8..ec344b0 100644 --- a/nodejs/package.json +++ b/nodejs/package.json @@ -1,6 +1,6 @@ { "name": "hyperbuild", - "version": "0.0.30", + "version": "0.0.31", "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 be1993a..43aca2a 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hyperbuild-python" publish = false -version = "0.0.30" +version = "0.0.31" authors = ["Wilson Lin "] edition = "2018" @@ -10,7 +10,7 @@ name = "hyperbuild_python_lib" crate-type = ["cdylib"] [dependencies] -hyperbuild = "0.0.30" +hyperbuild = "0.0.31" [dependencies.pyo3] version = "0.9.0-alpha.1" features = ["extension-module"] diff --git a/python/setup.py b/python/setup.py index 8c74485..6eee526 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.0.30", + version="0.0.31", 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 b8340fd..49b8448 100644 --- a/ruby/Cargo.toml +++ b/ruby/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hyperbuild-ruby" publish = false -version = "0.0.30" +version = "0.0.31" authors = ["Wilson Lin "] edition = "2018" @@ -10,5 +10,5 @@ name = "hyperbuild_ruby_lib" crate-type = ["cdylib"] [dependencies] -hyperbuild = "0.0.30" +hyperbuild = "0.0.31" rutie = "0.7.0" diff --git a/ruby/hyperbuild.gemspec b/ruby/hyperbuild.gemspec index acf7f69..b9a716d 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.0.30" + spec.version = "0.0.31" spec.authors = ["Wilson Lin"] spec.email = ["code@wilsonl.in"] spec.license = "MIT"