Skip to content

Commit 4033d04

Browse files
chore: Release
1 parent c5f8225 commit 4033d04

7 files changed

Lines changed: 55 additions & 9 deletions

File tree

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.

crates/quickmark-cli/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
## [quickmark-cli@1.0.1] - 2025-09-04
2+
3+
### 🐛 Bug Fixes
4+
5+
- *(md051)* Resolve false positives in link fragment validation (#136)
6+
7+
### ⚙️ Miscellaneous Tasks
8+
9+
- Release
10+
## [quickmark-cli@1.0.0] - 2025-08-27
11+
12+
### ⚙️ Miscellaneous Tasks
13+
14+
- Prepare 1.0.0 release (#131)

crates/quickmark-cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "quickmark-cli"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
edition = "2021"
55
description = "Lightning-fast Markdown/CommonMark linter CLI tool with tree-sitter based parsing"
66
license = "MIT"
@@ -17,15 +17,15 @@ path = "src/main.rs"
1717
[dependencies]
1818
anyhow = "1.0.86"
1919
clap = { version = "4.5.4", features = ["derive"] }
20-
quickmark-core = { path = "../quickmark-core", version = "1.0.0-beta.2" }
20+
quickmark-core = { path = "../quickmark-core", version = "1.0.1" }
2121
glob = "0.3"
2222
rayon = "1.8"
2323
ignore = "0.4"
2424
walkdir = "2.4"
2525

2626
[dev-dependencies.quickmark-core]
2727
path = "../quickmark-core"
28-
version = "1.0.0-beta.1"
28+
version = "1.0.1"
2929
features = ["testing"]
3030

3131
[dev-dependencies]

crates/quickmark-core/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
## [quickmark-core@1.0.1] - 2025-09-04
2+
3+
### 🐛 Bug Fixes
4+
5+
- *(md051)* Resolve false positives in link fragment validation (#136)
6+
7+
### ⚙️ Miscellaneous Tasks
8+
9+
- Release
10+
## [quickmark-core@1.0.0] - 2025-08-27
11+
12+
### ⚙️ Miscellaneous Tasks
13+
14+
- Prepare 1.0.0 release (#131)

crates/quickmark-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "quickmark-core"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
edition = "2021"
55
description = "Lightning-fast Markdown/CommonMark linter core library with tree-sitter based parsing"
66
license = "MIT"
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
## [quickmark-server@1.0.1] - 2025-09-04
2+
3+
### 🐛 Bug Fixes
4+
5+
- *(md051)* Resolve false positives in link fragment validation (#136)
6+
7+
### 📚 Documentation
8+
9+
- Add link to jetbrains extension (#132)
10+
11+
### ⚙️ Miscellaneous Tasks
12+
13+
- Release
14+
## [quickmark-server@1.0.0] - 2025-08-27
15+
16+
### ⚙️ Miscellaneous Tasks
17+
18+
- Prepare 1.0.0 release (#131)

crates/quickmark-server/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "quickmark-server"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
edition = "2021"
55
description = "Lightning-fast Markdown/CommonMark linter LSP server for editor integration"
66
license = "MIT"
@@ -12,7 +12,7 @@ categories = ["text-processing", "development-tools", "text-editors"]
1212

1313
[dependencies]
1414
anyhow = "1.0.86"
15-
quickmark-core = { path = "../quickmark-core", version = "1.0.0-beta.2" }
15+
quickmark-core = { path = "../quickmark-core", version = "1.0.1" }
1616
tower-lsp = "0.20.0"
1717
tokio = { version = "1.0", features = ["full"] }
1818

0 commit comments

Comments
 (0)