mkdocs-minify-html-plugin 0.3.7__tar.gz → 0.3.9__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -573,9 +573,9 @@ dependencies = [
573
573
 
574
574
  [[package]]
575
575
  name = "minify-html"
576
- version = "0.17.1"
576
+ version = "0.18.0"
577
577
  source = "registry+https://github.com/rust-lang/crates.io-index"
578
- checksum = "0329851816fa8a11a24e1fa8330817140af3e53eecdbd68e5d4e135c43c9d9d5"
578
+ checksum = "16eb12bf64f1424394212ef9dc7219c044212d898852d92d2ffed0a1a48fe046"
579
579
  dependencies = [
580
580
  "ahash 0.8.12",
581
581
  "aho-corasick",
@@ -617,7 +617,7 @@ dependencies = [
617
617
 
618
618
  [[package]]
619
619
  name = "mkdocs-minify-html-plugin"
620
- version = "0.3.7"
620
+ version = "0.3.9"
621
621
  dependencies = [
622
622
  "minify-html",
623
623
  "pyo3",
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "mkdocs-minify-html-plugin"
3
- version = "0.3.7"
3
+ version = "0.3.9"
4
4
  edition = "2024"
5
5
  license = "MIT"
6
6
  include = [
@@ -20,7 +20,7 @@ name = "_minify_html"
20
20
  crate-type = ["cdylib"]
21
21
 
22
22
  [dependencies]
23
- minify-html = "=0.17.1"
23
+ minify-html = "=0.18.0"
24
24
  pyo3 = { version = "=0.27.1", features = ["extension-module"] }
25
25
 
26
26
  [profile.release]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mkdocs-minify-html-plugin
3
- Version: 0.3.7
3
+ Version: 0.3.9
4
4
  Classifier: Framework :: MkDocs
5
5
  Classifier: Natural Language :: English
6
6
  Classifier: Operating System :: MacOS
@@ -4,7 +4,7 @@ requires = ["maturin>=1,<2"]
4
4
 
5
5
  [project]
6
6
  name = "mkdocs-minify-html-plugin"
7
- version = "0.3.7"
7
+ version = "0.3.9"
8
8
  description = "MkDocs plugin for minification using minify-html, an extremely fast and smart HTML + JS + CSS minifier"
9
9
  readme = "README.md"
10
10
  authors = [{ name = "monosans", email = "hsyqixco@protonmail.com" }]
@@ -85,7 +85,7 @@ fn minify(
85
85
  keep_ssi_comments: bool,
86
86
  minify_css: bool,
87
87
  minify_doctype: bool,
88
- #[expect(unused_variables)] minify_js: bool,
88
+ minify_js: bool,
89
89
  preserve_brace_template_syntax: bool,
90
90
  preserve_chevron_percent_template_syntax: bool,
91
91
  remove_bangs: bool,
@@ -103,7 +103,7 @@ fn minify(
103
103
  keep_ssi_comments,
104
104
  minify_css,
105
105
  minify_doctype,
106
- minify_js: false,
106
+ minify_js,
107
107
  preserve_brace_template_syntax,
108
108
  preserve_chevron_percent_template_syntax,
109
109
  remove_bangs,