This commit is contained in:
Wilson Lin 2020-01-03 17:48:16 +11:00
parent 7e90b5f61b
commit 528b4f6909
5 changed files with 9 additions and 9 deletions

2
Cargo.lock generated
View File

@ -74,7 +74,7 @@ dependencies = [
[[package]]
name = "hyperbuild"
version = "0.0.6"
version = "0.0.7"
dependencies = [
"cascade 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
"phf 0.8.0 (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.6"
version = "0.0.7"
authors = ["Wilson Lin <code@wilsonl.in>"]
edition = "2018"
include = ["/gen/**/*", "/src/**/*", "/build.rs", "/Cargo.toml", "/LICENSE", "/README.md"]

View File

@ -23,9 +23,9 @@ Available as:
##### Get
[Windows](https://wilsonl.in/hyperbuild/bin/0.0.6-windows-x86_64.exe) |
[macOS](https://wilsonl.in/hyperbuild/bin/0.0.6-macos-x86_64) |
[Linux](https://wilsonl.in/hyperbuild/bin/0.0.6-linux-x86_64)
[Windows](https://wilsonl.in/hyperbuild/bin/0.0.7-windows-x86_64.exe) |
[macOS](https://wilsonl.in/hyperbuild/bin/0.0.7-macos-x86_64) |
[Linux](https://wilsonl.in/hyperbuild/bin/0.0.7-linux-x86_64)
##### Use
@ -42,7 +42,7 @@ hyperbuild --src /path/to/src.html --out /path/to/output.min.html
```toml
[dependencies]
hyperbuild = "0.0.6"
hyperbuild = "0.0.7"
```
##### Use

View File

@ -1,7 +1,7 @@
[package]
name = "hyperbuild-nodejs"
publish = false
version = "0.0.6"
version = "0.0.7"
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.6"
hyperbuild = "0.0.7"
neon = "0.3.3"

View File

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