This commit is contained in:
Wilson Lin 2020-01-26 23:26:59 +13:00
parent 2ebfb9d017
commit 375fcf0d01
12 changed files with 21 additions and 21 deletions

2
Cargo.lock generated
View File

@ -88,7 +88,7 @@ dependencies = [
[[package]]
name = "hyperbuild"
version = "0.0.40"
version = "0.0.41"
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.40"
version = "0.0.41"
authors = ["Wilson Lin <code@wilsonl.in>"]
edition = "2018"
include = ["/gen/*.json", "/src/**/*", "/build.rs", "/Cargo.toml", "/LICENSE", "/README.md"]

View File

@ -17,7 +17,7 @@ Available as:
Speed and effectiveness of Node.js version compared to [html-minfier](https://github.com/kangax/html-minifier) and [minimize](https://github.com/Swaagie/minimize). See [bench](./bench) folder for more details.
<img width="435" alt="Chart showing speed of HTML minifiers" src="https://wilsonl.in/hyperbuild/bench/0.0.40/average-speeds.png"> <img width="435" alt="Chart showing effectiveness of HTML minifiers" src="https://wilsonl.in/hyperbuild/bench/0.0.40/average-sizes.png">
<img width="435" alt="Chart showing speed of HTML minifiers" src="https://wilsonl.in/hyperbuild/bench/0.0.41/average-speeds.png"> <img width="435" alt="Chart showing effectiveness of HTML minifiers" src="https://wilsonl.in/hyperbuild/bench/0.0.41/average-sizes.png">
## Usage
@ -27,9 +27,9 @@ Precompiled binaries are available for x86-64 Windows, macOS, and Linux. To comp
##### Get
[Windows](https://wilsonl.in/hyperbuild/bin/0.0.40-windows-x86_64.exe) |
[macOS](https://wilsonl.in/hyperbuild/bin/0.0.40-macos-x86_64) |
[Linux](https://wilsonl.in/hyperbuild/bin/0.0.40-linux-x86_64)
[Windows](https://wilsonl.in/hyperbuild/bin/0.0.41-windows-x86_64.exe) |
[macOS](https://wilsonl.in/hyperbuild/bin/0.0.41-macos-x86_64) |
[Linux](https://wilsonl.in/hyperbuild/bin/0.0.41-linux-x86_64)
##### Use
@ -46,7 +46,7 @@ hyperbuild --src /path/to/src.html --out /path/to/output.min.html
```toml
[dependencies]
hyperbuild = "0.0.40"
hyperbuild = "0.0.41"
```
##### Use
@ -107,7 +107,7 @@ Add as a Maven dependency:
<dependency>
<groupId>in.wilsonl.hyperbuild</groupId>
<artifactId>hyperbuild</artifactId>
<version>0.0.40</version>
<version>0.0.41</version>
</dependency>
```

View File

@ -33,7 +33,7 @@ For more information on how the tests are fetched, see [fetch.js](./fetch.js).
On this [project's README](../README.md), average graphs are shown. Graphs showing per-test results are shown below:
<img width="435" alt="Chart showing speed of HTML minifiers per test" src="https://wilsonl.in/hyperbuild/bench/0.0.40/speeds.png"> <img width="435" alt="Chart showing effectiveness of HTML minifiers per test" src="https://wilsonl.in/hyperbuild/bench/0.0.40/sizes.png">
<img width="435" alt="Chart showing speed of HTML minifiers per test" src="https://wilsonl.in/hyperbuild/bench/0.0.41/speeds.png"> <img width="435" alt="Chart showing effectiveness of HTML minifiers per test" src="https://wilsonl.in/hyperbuild/bench/0.0.41/sizes.png">
Since speed depends on the input, speed charts show performance relative to hyperbuild-nodejs as a percentage.

View File

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

View File

@ -6,7 +6,7 @@
<groupId>in.wilsonl.hyperbuild</groupId>
<artifactId>hyperbuild</artifactId>
<version>0.0.40</version>
<version>0.0.41</version>
<name>hyperbuild</name>
<description>Fast 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.40"
version = "0.0.41"
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.40"
hyperbuild = "0.0.41"
neon = "0.3.3"

View File

@ -1,6 +1,6 @@
{
"name": "hyperbuild",
"version": "0.0.40",
"version": "0.0.41",
"description": "Fast one-pass in-place HTML minifier written in Rust with context-aware whitespace handling",
"main": "dist/index.js",
"files": [

View File

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

View File

@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
setuptools.setup(
name="hyperbuild",
version="0.0.40",
version="0.0.41",
author="Wilson Lin",
author_email="code@wilsonl.in",
description="Fast one-pass in-place HTML minifier written in Rust with context-aware whitespace handling",

View File

@ -1,7 +1,7 @@
[package]
name = "hyperbuild-ruby"
publish = false
version = "0.0.40"
version = "0.0.41"
authors = ["Wilson Lin <code@wilsonl.in>"]
edition = "2018"
@ -10,5 +10,5 @@ name = "hyperbuild_ruby_lib"
crate-type = ["cdylib"]
[dependencies]
hyperbuild = "0.0.40"
hyperbuild = "0.0.41"
rutie = "0.7.0"

View File

@ -2,7 +2,7 @@ require 'rake'
Gem::Specification.new do |spec|
spec.name = "hyperbuild"
spec.version = "0.0.40"
spec.version = "0.0.41"
spec.authors = ["Wilson Lin"]
spec.email = ["code@wilsonl.in"]
spec.license = "MIT"