This commit is contained in:
Wilson Lin 2020-01-19 16:50:51 +11:00
parent 7940fae01b
commit 232293bdd8
8 changed files with 16 additions and 17 deletions

2
Cargo.lock generated
View File

@ -88,7 +88,7 @@ dependencies = [
[[package]]
name = "hyperbuild"
version = "0.0.19"
version = "0.0.20"
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.19"
version = "0.0.20"
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.19-windows-x86_64.exe) |
[macOS](https://wilsonl.in/hyperbuild/bin/0.0.19-macos-x86_64) |
[Linux](https://wilsonl.in/hyperbuild/bin/0.0.19-linux-x86_64)
[Windows](https://wilsonl.in/hyperbuild/bin/0.0.20-windows-x86_64.exe) |
[macOS](https://wilsonl.in/hyperbuild/bin/0.0.20-macos-x86_64) |
[Linux](https://wilsonl.in/hyperbuild/bin/0.0.20-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.19"
hyperbuild = "0.0.20"
```
##### 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.19.jar) file.
Download the [JAR](https://wilsonl.in/hyperbuild/bin/0.0.20.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.19-windows-x86_64-python.pyd), [macOS](https://wilsonl.in/hyperbuild/bin/0.0.19-macos-x86_64-python.so), or [Linux](https://wilsonl.in/hyperbuild/bin/0.0.19-linux-x86_64-python.so).
Download the native module for [Windows](https://wilsonl.in/hyperbuild/bin/0.0.20-windows-x86_64-python.pyd), [macOS](https://wilsonl.in/hyperbuild/bin/0.0.20-macos-x86_64-python.so), or [Linux](https://wilsonl.in/hyperbuild/bin/0.0.20-linux-x86_64-python.so).
Rename the file to `hyperbuild.pyd` on Windows or `hyperbuild.so` on macOS/Linux.

View File

@ -1,12 +1,12 @@
[package]
name = "hyperbuild-java"
publish = false
version = "0.0.19"
version = "0.0.20"
authors = ["Wilson Lin <code@wilsonl.in>"]
edition = "2018"
[dependencies]
hyperbuild = "0.0.19"
hyperbuild = "0.0.20"
jni = "0.14.0"
[lib]

View File

@ -6,7 +6,7 @@
<groupId>in.wilsonl.hyperbuild</groupId>
<artifactId>hyperbuild</artifactId>
<version>0.0.19</version>
<version>0.0.20</version>
<name>hyperbuild</name>
<description>One-pass in-place HTML minifier written in Rust with context-aware whitespace handling</description>

View File

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

View File

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

View File

@ -1,7 +1,7 @@
[package]
name = "hyperbuild-python"
publish = false
version = "0.0.19"
version = "0.0.20"
authors = ["Wilson Lin <code@wilsonl.in>"]
edition = "2018"
@ -10,8 +10,7 @@ name = "hyperbuild_python_lib"
crate-type = ["cdylib"]
[dependencies]
hyperbuild = "0.0.19"
hyperbuild = "0.0.20"
[dependencies.pyo3]
version = "0.9.0-alpha.1"
features = ["extension-module"]