This commit is contained in:
Wilson Lin 2020-01-18 18:21:13 +11:00
parent 9671d9df56
commit e5b6a6e7ab
7 changed files with 12 additions and 12 deletions

2
Cargo.lock generated
View File

@ -88,7 +88,7 @@ dependencies = [
[[package]]
name = "hyperbuild"
version = "0.0.16"
version = "0.0.17"
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)",

View File

@ -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.16"
version = "0.0.17"
authors = ["Wilson Lin <code@wilsonl.in>"]
edition = "2018"
include = ["/gen/*.json", "/src/**/*", "/build.rs", "/Cargo.toml", "/LICENSE", "/README.md"]

View File

@ -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.16-windows-x86_64.exe) |
[macOS](https://wilsonl.in/hyperbuild/bin/0.0.16-macos-x86_64) |
[Linux](https://wilsonl.in/hyperbuild/bin/0.0.16-linux-x86_64)
[Windows](https://wilsonl.in/hyperbuild/bin/0.0.17-windows-x86_64.exe) |
[macOS](https://wilsonl.in/hyperbuild/bin/0.0.17-macos-x86_64) |
[Linux](https://wilsonl.in/hyperbuild/bin/0.0.17-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.16"
hyperbuild = "0.0.17"
```
##### Use

View File

@ -1,11 +1,11 @@
[package]
name = "hyperbuild-java"
version = "0.0.16"
version = "0.0.17"
authors = ["Wilson Lin <code@wilsonl.in>"]
edition = "2018"
[dependencies]
hyperbuild = "0.0.16"
hyperbuild = "0.0.17"
jni = "0.14.0"
[lib]

View File

@ -6,7 +6,7 @@
<groupId>in.wilsonl.hyperbuild</groupId>
<artifactId>hyperbuild</artifactId>
<version>0.0.16</version>
<version>0.0.17</version>
<build>
<plugins>

View File

@ -1,7 +1,7 @@
[package]
name = "hyperbuild-nodejs"
publish = false
version = "0.0.16"
version = "0.0.17"
authors = ["Wilson Lin <code@wilsonl.in>"]
license = "MIT"
build = "build.rs"
@ -16,5 +16,5 @@ crate-type = ["cdylib"]
neon-build = "0.3.3"
[dependencies]
hyperbuild = "0.0.16"
hyperbuild = "0.0.17"
neon = "0.3.3"

View File

@ -1,6 +1,6 @@
{
"name": "hyperbuild",
"version": "0.0.16",
"version": "0.0.17",
"description": "One-pass in-place HTML minifier written in Rust with context-aware whitespace handling",
"main": "lib/index.js",
"repository": {