diff --git a/README.md b/README.md
index 5163856..7c0c5b1 100644
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@ Extremely fast JavaScript minifier, written in Rust.
Comparison with esbuild, run on [common libraries](./bench).
-
+
## Features
@@ -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.
@@ -48,7 +48,7 @@ Add the dependency:
```toml
[dependencies]
-minify-js = "0.5.6"
+minify-js = "0.6.0"
```
Call the method:
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 513560a..b8c9300 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -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" }
diff --git a/nodejs/Cargo.toml b/nodejs/Cargo.toml
index 62f7452..9b1d3d9 100644
--- a/nodejs/Cargo.toml
+++ b/nodejs/Cargo.toml
@@ -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 "]
edition = "2021"
@@ -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"
diff --git a/nodejs/package.json b/nodejs/package.json
index 63860c7..e763c87 100644
--- a/nodejs/package.json
+++ b/nodejs/package.json
@@ -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",
diff --git a/rust/Cargo.toml b/rust/Cargo.toml
index 0cd821f..7d14728 100644
--- a/rust/Cargo.toml
+++ b/rust/Cargo.toml
@@ -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"