Skip to content

Commit 2392ef0

Browse files
committed
0.18.0
1 parent a39037f commit 2392ef0

File tree

15 files changed

+22
-22
lines changed

15 files changed

+22
-22
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# minify-html changelog
22

3-
## Pending
3+
## 0.18.0
44

55
- Fix WASM builds.
66
- [Java] BREAKING: Minimum Java version increased from 7 to 8.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ minhtml --keep-closing-tags --minify-css /path/to/**/*.html
6060

6161
```toml
6262
[dependencies]
63-
minify-html = "0.17.1"
63+
minify-html = "0.18.0"
6464
```
6565

6666
### Use
@@ -153,7 +153,7 @@ Add as a Maven dependency:
153153
<dependency>
154154
<groupId>in.wilsonl.minifyhtml</groupId>
155155
<artifactId>minify-html</artifactId>
156-
<version>0.17.1</version>
156+
<version>0.18.0</version>
157157
</dependency>
158158
```
159159

minhtml/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "minhtml"
33
description = "[CLI] Extremely fast and smart HTML + JS + CSS minifier"
4-
version = "0.17.1"
4+
version = "0.18.0"
55
authors = ["Wilson Lin <code@wilsonl.in>"]
66
edition = "2018"
77
license = "MIT"
@@ -12,6 +12,6 @@ categories = ["compression", "command-line-utilities", "development-tools::build
1212
repository = "https://github.com/wilsonzlin/minify-html.git"
1313

1414
[dependencies]
15-
minify-html = { version = "0.17.1", path = "../minify-html" }
15+
minify-html = { version = "0.18.0", path = "../minify-html" }
1616
rayon = "1.11"
1717
structopt = "0.3"

minify-html-java/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
publish = false
33
name = "minify-html-java"
4-
version = "0.17.1"
4+
version = "0.18.0"
55
authors = ["Wilson Lin <code@wilsonl.in>"]
66
edition = "2018"
77

minify-html-java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>in.wilsonl.minifyhtml</groupId>
88
<artifactId>minify-html</artifactId>
9-
<version>0.17.1</version>
9+
<version>0.18.0</version>
1010

1111
<name>minify-html</name>
1212
<description>Extremely fast and smart HTML + JS + CSS minifier</description>

minify-html-nodejs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "minify-html-nodejs"
33
publish = false
4-
version = "0.17.1"
4+
version = "0.18.0"
55
description = "Node.js bindings for minify-html"
66
authors = ["Wilson Lin <npm@wilsonl.in>"]
77
edition = "2021"

minify-html-nodejs/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"index.js",
1212
"README.md"
1313
],
14-
"version": "0.17.1",
14+
"version": "0.18.0",
1515
"types": "index.d.ts",
1616
"scripts": {
1717
"build": "cargo-cp-artifact --artifact cdylib minify-html-nodejs index.node -- cargo build --message-format=json-render-diagnostics",
@@ -37,11 +37,11 @@
3737
},
3838
"homepage": "https://github.com/wilsonzlin/minify-html#readme",
3939
"optionalDependencies": {
40-
"@minify-html/node-darwin-arm64": "0.17.1",
41-
"@minify-html/node-darwin-x64": "0.17.1",
42-
"@minify-html/node-linux-arm64": "0.17.1",
43-
"@minify-html/node-linux-x64": "0.17.1",
44-
"@minify-html/node-win32-x64": "0.17.1"
40+
"@minify-html/node-darwin-arm64": "0.18.0",
41+
"@minify-html/node-darwin-x64": "0.18.0",
42+
"@minify-html/node-linux-arm64": "0.18.0",
43+
"@minify-html/node-linux-x64": "0.18.0",
44+
"@minify-html/node-win32-x64": "0.18.0"
4545
},
4646
"devDependencies": {
4747
"@types/node": "^14.6.0",

minify-html-onepass-python/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ license = "MIT"
66
homepage = "https://github.com/wilsonzlin/minify-html"
77
readme = "README.md"
88
repository = "https://github.com/wilsonzlin/minify-html.git"
9-
version = "0.17.1"
9+
version = "0.18.0"
1010
authors = ["Wilson Lin <code@wilsonl.in>"]
1111
edition = "2018"
1212

minify-html-onepass/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ readme = "README.md"
77
keywords = ["html", "compress", "minifier", "js", "css"]
88
categories = ["compression", "development-tools::build-utils", "web-programming"]
99
repository = "https://github.com/wilsonzlin/minify-html.git"
10-
version = "0.17.1"
10+
version = "0.18.0"
1111
authors = ["Wilson Lin <code@wilsonl.in>"]
1212
edition = "2018"
1313

minify-html-python/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ license = "MIT"
66
homepage = "https://github.com/wilsonzlin/minify-html"
77
readme = "README.md"
88
repository = "https://github.com/wilsonzlin/minify-html.git"
9-
version = "0.17.1"
9+
version = "0.18.0"
1010
authors = ["Wilson Lin <code@wilsonl.in>"]
1111
edition = "2018"
1212

0 commit comments

Comments
 (0)