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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format

## [Unreleased]

## [0.5.0] - 2026-05-06

First tagged release. Feature-complete for the v1 candidate: DAISY 2.02 → EPUB 3 conversion with Media Overlays, EPUBCheck-clean output, ACE accessibility validation, MP3 → Opus audio recompression, local Whisper transcription with prose-shaped paragraph cleanup, automatic and explicit cover lookup, parallel batch conversion, JSON output for CI/pipeline use. No API stability commitment yet — that comes with 1.0.

### Added

- `dpub convert --rights "<text>"` stamps a free-text `<dc:rights>` element into the EPUB's OPF metadata. When the flag is omitted, the source DAISY's `dc:rights` (if present in the NCC) carries through; the flag overrides. Useful for explicitly asserting copyright frame (Marrakesh Treaty / EU accessibility exception, etc.) when the source doesn't carry one. Closes #21.
Expand Down
18 changes: 9 additions & 9 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ members = [
]

[workspace.package]
version = "0.1.0-dev"
version = "0.5.0"
edition = "2024"
rust-version = "1.88"
license = "MIT OR Apache-2.0"
Expand Down
8 changes: 4 additions & 4 deletions crates/dpub-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ metal = ["dpub-convert/metal"]
cuda = ["dpub-convert/cuda"]

[dependencies]
dpub-audio = { path = "../dpub-audio", version = "0.1.0-dev" }
dpub-core = { path = "../dpub-core", version = "0.1.0-dev" }
dpub-convert = { path = "../dpub-convert", version = "0.1.0-dev" }
dpub-validate = { path = "../dpub-validate", version = "0.1.0-dev" }
dpub-audio = { path = "../dpub-audio", version = "0.5.0" }
dpub-core = { path = "../dpub-core", version = "0.5.0" }
dpub-convert = { path = "../dpub-convert", version = "0.5.0" }
dpub-validate = { path = "../dpub-validate", version = "0.5.0" }
clap = { workspace = true }
anyhow = { workspace = true }
rayon = { workspace = true }
Expand Down
12 changes: 6 additions & 6 deletions crates/dpub-convert/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ metal = ["dpub-whisper/metal"]
cuda = ["dpub-whisper/cuda"]

[dependencies]
dpub-audio = { path = "../dpub-audio", version = "0.1.0-dev" }
dpub-core = { path = "../dpub-core", version = "0.1.0-dev" }
dpub-meta = { path = "../dpub-meta", version = "0.1.0-dev" }
dpub-util = { path = "../dpub-util", version = "0.1.0-dev" }
dpub-whisper = { path = "../dpub-whisper", version = "0.1.0-dev" }
epub3-writer = { path = "../epub3-writer", version = "0.1.0-dev" }
dpub-audio = { path = "../dpub-audio", version = "0.5.0" }
dpub-core = { path = "../dpub-core", version = "0.5.0" }
dpub-meta = { path = "../dpub-meta", version = "0.5.0" }
dpub-util = { path = "../dpub-util", version = "0.5.0" }
dpub-whisper = { path = "../dpub-whisper", version = "0.5.0" }
epub3-writer = { path = "../epub3-writer", version = "0.5.0" }
thiserror = { workspace = true }
uuid = { workspace = true }
chrono = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/dpub-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description = "DAISY 2.02 parser and in-memory model"
workspace = true

[dependencies]
dpub-util = { path = "../dpub-util", version = "0.1.0-dev" }
dpub-util = { path = "../dpub-util", version = "0.5.0" }
quick-xml = { workspace = true }
serde = { workspace = true }
thiserror = { workspace = true }
2 changes: 1 addition & 1 deletion crates/dpub-validate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ thiserror = { workspace = true }
which = { workspace = true }

[dev-dependencies]
epub3-writer = { path = "../epub3-writer", version = "0.1.0-dev" }
epub3-writer = { path = "../epub3-writer", version = "0.5.0" }
2 changes: 1 addition & 1 deletion crates/epub3-writer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description = "Builder and serialiser for accessible EPUB 3 publications with Me
workspace = true

[dependencies]
dpub-util = { path = "../dpub-util", version = "0.1.0-dev" }
dpub-util = { path = "../dpub-util", version = "0.5.0" }
zip = { workspace = true }
chrono = { workspace = true }
uuid = { workspace = true }
Expand Down
Loading