Skip to content

Commit 772ac0a

Browse files
committed
0.13.2
Upgrade dprint core
1 parent 170d2f4 commit 772ac0a

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dprint-plugin-markdown"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
authors = ["David Sherret <[email protected]>"]
55
edition = "2021"
66
homepage = "https://github.com/dprint/dprint-plugin-markdown"
@@ -25,7 +25,7 @@ tracing = ["dprint-core/tracing"]
2525

2626
[dependencies]
2727
anyhow = "1.0.56"
28-
dprint-core = { version = "0.55.2", features = ["formatting"] }
28+
dprint-core = { version = "0.56.0", features = ["formatting"] }
2929
pulldown-cmark = { version = "0.9.1", default-features = false }
3030
regex = "1"
3131
serde = { version = "1.0.136", features = ["derive"] }

src/configuration/resolve_config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ pub fn resolve_config(config: ConfigKeyMap, global_config: &GlobalConfiguration)
3838
new_line_kind: get_value(
3939
&mut config,
4040
"newLineKind",
41-
global_config.new_line_kind.unwrap_or(DEFAULT_GLOBAL_CONFIGURATION.new_line_kind),
41+
global_config.new_line_kind.unwrap_or(RECOMMENDED_GLOBAL_CONFIGURATION.new_line_kind),
4242
&mut diagnostics,
4343
),
4444
text_wrap: get_value(&mut config, "textWrap", TextWrap::Maintain, &mut diagnostics),

0 commit comments

Comments
 (0)