From 45843408e7e963c2f91ab4a2a2bc50632468df47 Mon Sep 17 00:00:00 2001 From: Wilson Lin Date: Sun, 5 Jan 2020 13:56:52 +1100 Subject: [PATCH] 0.0.9 --- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 8 ++++---- nodejs/native/Cargo.toml | 4 ++-- nodejs/package.json | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6ac5031..91ae982 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -74,7 +74,7 @@ dependencies = [ [[package]] name = "hyperbuild" -version = "0.0.8" +version = "0.0.9" 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)", diff --git a/Cargo.toml b/Cargo.toml index 2db116d..17964ed 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.8" +version = "0.0.9" authors = ["Wilson Lin "] edition = "2018" include = ["/gen/**/*", "/src/**/*", "/build.rs", "/Cargo.toml", "/LICENSE", "/README.md"] diff --git a/README.md b/README.md index a67d922..b3563e1 100644 --- a/README.md +++ b/README.md @@ -23,9 +23,9 @@ Available as: ##### Get -[Windows](https://wilsonl.in/hyperbuild/bin/0.0.8-windows-x86_64.exe) | -[macOS](https://wilsonl.in/hyperbuild/bin/0.0.8-macos-x86_64) | -[Linux](https://wilsonl.in/hyperbuild/bin/0.0.8-linux-x86_64) +[Windows](https://wilsonl.in/hyperbuild/bin/0.0.9-windows-x86_64.exe) | +[macOS](https://wilsonl.in/hyperbuild/bin/0.0.9-macos-x86_64) | +[Linux](https://wilsonl.in/hyperbuild/bin/0.0.9-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.8" +hyperbuild = "0.0.9" ``` ##### Use diff --git a/nodejs/native/Cargo.toml b/nodejs/native/Cargo.toml index 6169db2..2ec4188 100644 --- a/nodejs/native/Cargo.toml +++ b/nodejs/native/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hyperbuild-nodejs" publish = false -version = "0.0.8" +version = "0.0.9" authors = ["Wilson Lin "] license = "MIT" build = "build.rs" @@ -16,5 +16,5 @@ crate-type = ["cdylib"] neon-build = "0.3.3" [dependencies] -hyperbuild = "0.0.8" +hyperbuild = "0.0.9" neon = "0.3.3" diff --git a/nodejs/package.json b/nodejs/package.json index b70dada..67764af 100644 --- a/nodejs/package.json +++ b/nodejs/package.json @@ -1,6 +1,6 @@ { "name": "hyperbuild", - "version": "0.0.8", + "version": "0.0.9", "description": "One-pass in-place HTML minifier written in Rust with context-aware whitespace handling", "main": "lib/index.js", "repository": {