From d0b2fa9a70abae6d80afd8e34910d932b805d2dc Mon Sep 17 00:00:00 2001 From: Wilson Lin Date: Mon, 25 Dec 2023 14:29:52 +1100 Subject: [PATCH] 0.6.0 --- README.md | 10 +++++----- cli/Cargo.toml | 2 +- nodejs/Cargo.toml | 4 ++-- nodejs/package.json | 2 +- rust/Cargo.toml | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-) 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). -Chart showing speed of JS minifiersChart showing compression of JS minifiers +Chart showing speed of JS minifiersChart showing compression of JS minifiers ## 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"