Skip to content

Commit

Permalink
0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wilsonzlin committed Dec 25, 2023
1 parent ecce03e commit d0b2fa9
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Extremely fast JavaScript minifier, written in Rust.

Comparison with esbuild, run on [common libraries](./bench).

<img width="400" alt="Chart showing speed of JS minifiers" src="https://static.wilsonl.in/minify-js/bench/0.5.6/total-times.svg"><img width="400" alt="Chart showing compression of JS minifiers" src="https://static.wilsonl.in/minify-js/bench/0.5.6/average-sizes.svg">
<img width="400" alt="Chart showing speed of JS minifiers" src="https://static.wilsonl.in/minify-js/bench/0.6.0/total-times.svg"><img width="400" alt="Chart showing compression of JS minifiers" src="https://static.wilsonl.in/minify-js/bench/0.6.0/average-sizes.svg">

## Features

Expand All @@ -32,9 +32,9 @@ Comparison with esbuild, run on [common libraries](./bench).

Precompiled binaries are available for Linux, macOS, and Windows.

[Linux x64](https://static.wilsonl.in/minify-js/cli/0.5.6/linux-x86_64/minify-js) |
[macOS x64](https://static.wilsonl.in/minify-js/cli/0.5.6/macos-x86_64/minify-js) |
[Windows x64](https://static.wilsonl.in/minify-js/cli/0.5.6/windows-x86_64/minify-js.exe)
[Linux x64](https://static.wilsonl.in/minify-js/cli/0.6.0/linux-x86_64/minify-js) |
[macOS x64](https://static.wilsonl.in/minify-js/cli/0.6.0/macos-x86_64/minify-js) |
[Windows x64](https://static.wilsonl.in/minify-js/cli/0.6.0/windows-x86_64/minify-js.exe)

Use the `--help` argument for more details.

Expand All @@ -48,7 +48,7 @@ Add the dependency:

```toml
[dependencies]
minify-js = "0.5.6"
minify-js = "0.6.0"
```

Call the method:
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "Extremely fast JS minifier"
edition = "2021"
name = "minify-js-cli"
publish = false
version = "0.5.6"
version = "0.6.0"

[dependencies]
minify-js = { path = "../rust" }
Expand Down
4 changes: 2 additions & 2 deletions nodejs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "minify-js-node"
publish = false
version = "0.5.6"
version = "0.6.0"
description = "Node.js bindings for minify-js"
authors = ["Wilson Lin <[email protected]>"]
edition = "2021"
Expand All @@ -10,7 +10,7 @@ edition = "2021"
crate-type = ["cdylib"]

[dependencies]
minify-js = { version = "0.5.6", path = "../rust" }
minify-js = { version = "0.6.0", path = "../rust" }

[dependencies.neon]
version = "0.10"
Expand Down
2 changes: 1 addition & 1 deletion nodejs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"README.md",
"postinstall.js"
],
"version": "0.5.6",
"version": "0.6.0",
"types": "index.d.ts",
"scripts": {
"build": "cargo-cp-artifact --artifact cdylib minify-js-node index.node -- cargo build --message-format=json-render-diagnostics",
Expand Down
2 changes: 1 addition & 1 deletion rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ license = "Apache-2.0"
name = "minify-js"
readme = "README.md"
repository = "https://github.com/wilsonzlin/minify-js"
version = "0.5.6"
version = "0.6.0"

[dependencies]
aho-corasick = "0.7"
Expand Down

0 comments on commit d0b2fa9

Please sign in to comment.