Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.4.0] - 2026-06-14

### Added

- **Browser playground at `/afm/playground/`** — Solid + Vite frontend
Expand Down
46 changes: 23 additions & 23 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ members = [
exclude = ["upstream/comrak", "crates/afm-book"]

[workspace.package]
version = "0.3.0"
version = "0.4.0"
edition = "2024"
rust-version = "1.95.0"
license = "Apache-2.0 OR MIT"
Expand Down Expand Up @@ -157,10 +157,10 @@ redundant_pub_crate = "allow"

[workspace.dependencies]
# Internal crate (the Markdown-integration layer that lives in this repo)
afm-markdown = { version = "0.3.0", path = "crates/afm-markdown" }
afm-markdown = { version = "0.4.0", path = "crates/afm-markdown" }
# Internal test-only crate. `publish = false` so the version is purely
# a cargo-deny placeholder; the real coupling is the workspace path.
afm-markdown-test-support = { version = "0.3.0", path = "crates/afm-markdown-test-support" }
afm-markdown-test-support = { version = "0.4.0", path = "crates/afm-markdown-test-support" }

# Sibling repo aozora — pure 青空文庫記法 parser. afm depends on the
# single umbrella `aozora` crate (its designated front door), NOT the
Expand All @@ -180,7 +180,7 @@ afm-markdown-test-support = { version = "0.3.0", path = "crates/afm-markdown-tes
# `default-features = false` keeps cst / query / wire / proptest / schema
# out of the build graph; the dev-only proptest generators come in via
# the `proptest` feature on the afm-markdown dev-dependency.
aozora = { version = "0.3.0", git = "https://github.com/P4suta/aozora.git", rev = "27ad4a79e93786a3b0364b6ed9ed941b8554721e", default-features = false }
aozora = { version = "0.4.0", git = "https://github.com/P4suta/aozora.git", rev = "df0f64b1a42897030d4b7d0129fb7564e070ab73", default-features = false }

# comrak vendored fork (path, not crates.io).
# `default-features = false` drops the comrak CLI (`cli` / `syntect` / `bon`)
Expand Down
2 changes: 1 addition & 1 deletion crates/afm-markdown/fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ afm-markdown-test-support = { path = "../../afm-markdown-test-support" }
# parent workspace's `aozora` (a loose `branch = "main"` could drift from
# the rev afm builds against). `aozora::encoding::decode_sjis` is the
# umbrella path for the SJIS decoder the sjis_decode target fuzzes.
aozora = { version = "0.3.0", git = "https://github.com/P4suta/aozora.git", rev = "c91b31d8a14f131413d3528aaf41bc1b240beca1", default-features = false }
aozora = { version = "0.4.0", git = "https://github.com/P4suta/aozora.git", rev = "df0f64b1a42897030d4b7d0129fb7564e070ab73", default-features = false }

# Prevent this crate from joining the afm workspace.
# Each fuzz target needs libfuzzer-sys (nightly-gated), which the
Expand Down
Loading