Skip to content

Commit b41cdcd

Browse files
committed
0.16.0
1 parent 961c7e9 commit b41cdcd

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.16.0
44

55
- BREAKING: Cfg options have changed such that spec compliance is the default, to avoid confusion with users:
66
- `do_not_minify_doctype` => `minify_doctype`

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.15.0"
63+
minify-html = "0.16.0"
6464
```
6565

6666
### Use
@@ -147,7 +147,7 @@ Add as a Maven dependency:
147147
<dependency>
148148
<groupId>in.wilsonl.minifyhtml</groupId>
149149
<artifactId>minify-html</artifactId>
150-
<version>0.15.0</version>
150+
<version>0.16.0</version>
151151
</dependency>
152152
```
153153

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.15.0"
4+
version = "0.16.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.15.0", path = "../minify-html" }
15+
minify-html = { version = "0.16.0", path = "../minify-html" }
1616
rayon = "1.5"
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.15.0"
4+
version = "0.16.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.15.0</version>
9+
<version>0.16.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.15.0"
4+
version = "0.16.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.15.0",
14+
"version": "0.16.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.15.0",
41-
"@minify-html/node-darwin-x64": "0.15.0",
42-
"@minify-html/node-linux-arm64": "0.15.0",
43-
"@minify-html/node-linux-x64": "0.15.0",
44-
"@minify-html/node-win32-x64": "0.15.0"
40+
"@minify-html/node-darwin-arm64": "0.16.0",
41+
"@minify-html/node-darwin-x64": "0.16.0",
42+
"@minify-html/node-linux-arm64": "0.16.0",
43+
"@minify-html/node-linux-x64": "0.16.0",
44+
"@minify-html/node-win32-x64": "0.16.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.15.0"
9+
version = "0.16.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.15.0"
10+
version = "0.16.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.15.0"
9+
version = "0.16.0"
1010
authors = ["Wilson Lin <code@wilsonl.in>"]
1111
edition = "2018"
1212

0 commit comments

Comments
 (0)