Skip to content

Commit fd0ad79

Browse files
committed
v0.3.1
1 parent 4199864 commit fd0ad79

File tree

6 files changed

+11
-7
lines changed

6 files changed

+11
-7
lines changed

Diff for: CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
[Semantic Versioning](https://semver.org/)
44

5+
## [0.3.1] - 2025-03-23
6+
7+
- Don't minify javascript until <https://github.com/wilsonzlin/minify-html/issues/225> is fixed.
8+
59
## [0.3.0] - 2025-03-23
610

711
- Bump `minify_html` from v0.15.0 to v0.16.4. Some config options were renamed, see [changelog](https://github.com/wilsonzlin/minify-html/blob/v0.16.4/CHANGELOG.md).

Diff for: Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mkdocs-minify-html-plugin"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
edition = "2024"
55
license = "MIT"
66
include = [

Diff for: pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ requires = ["maturin>=1,<2"]
44

55
[project]
66
name = "mkdocs-minify-html-plugin"
7-
version = "0.3.0"
7+
version = "0.3.1"
88
description = "MkDocs plugin for minification using minify-html, an extremely fast and smart HTML + JS + CSS minifier"
99
readme = "README.md"
1010
authors = [{ name = "monosans", email = "[email protected]" }]

Diff for: src/lib.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
use pyo3::prelude::*;
22

3-
#[allow(clippy::fn_params_excessive_bools)]
4-
#[allow(clippy::too_many_arguments)]
53
#[pyfunction]
64
#[pyo3(signature = (
75
code,
@@ -23,6 +21,8 @@ use pyo3::prelude::*;
2321
remove_bangs,
2422
remove_processing_instructions,
2523
))]
24+
#[allow(clippy::fn_params_excessive_bools)]
25+
#[allow(clippy::too_many_arguments)]
2626
fn minify(
2727
py: Python<'_>,
2828
code: &str,
@@ -36,7 +36,7 @@ fn minify(
3636
keep_ssi_comments: bool,
3737
minify_css: bool,
3838
minify_doctype: bool,
39-
minify_js: bool,
39+
#[allow(unused_variables)] minify_js: bool,
4040
preserve_brace_template_syntax: bool,
4141
preserve_chevron_percent_template_syntax: bool,
4242
remove_bangs: bool,

Diff for: uv.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)