diff --git a/CHANGELOG.md b/CHANGELOG.md index 19af5c7..a79e7ba 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.1.5] - 2026-05-26 + +### Added + +- Add audio support and restructure DIDL hierarchy for Infuse tvOS + ## [0.1.4] - 2026-04-22 ### Added diff --git a/Cargo.lock b/Cargo.lock index 4e5d622..1dcdd8c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -69,7 +69,7 @@ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" [[package]] name = "api" -version = "0.1.4" +version = "0.1.5" dependencies = [ "anyhow", "axum", @@ -213,7 +213,7 @@ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" [[package]] name = "cli" -version = "0.1.4" +version = "0.1.5" dependencies = [ "anyhow", "api", @@ -297,7 +297,7 @@ dependencies = [ [[package]] name = "dlna" -version = "0.1.4" +version = "0.1.5" dependencies = [ "anyhow", "axum", @@ -974,7 +974,7 @@ dependencies = [ [[package]] name = "spritz-core" -version = "0.1.4" +version = "0.1.5" dependencies = [ "anyhow", "urlencoding", diff --git a/Cargo.toml b/Cargo.toml index 83c9064..30131e8 100755 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ members = [ ] [workspace.package] -version = "0.1.4" +version = "0.1.5" edition = "2024" license = "MIT" repository = "https://github.com/dfallman/spritz" diff --git a/api/Cargo.toml b/api/Cargo.toml index 7a44f47..fbd183c 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -10,9 +10,9 @@ authors.workspace = true [dependencies] anyhow = "1.0.102" axum = "0.8.8" -dlna = { version = "0.1.4", path = "../dlna" } +dlna = { version = "0.1.5", path = "../dlna" } uuid = { version = "1", features = ["v4"] } -spritz-core = { version = "0.1.4", path = "../core" } +spritz-core = { version = "0.1.5", path = "../core" } local-ip-address = "0.6.11" tokio = { version = "1.51.1", features = ["full"] } tower = "0.5" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 67fdb47..604431a 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -13,7 +13,7 @@ path = "src/main.rs" [dependencies] anyhow = "1.0.102" -api = { version = "0.1.4", path = "../api" } +api = { version = "0.1.5", path = "../api" } clap = { version = "4.6.0", features = ["derive"] } tokio = { version = "1.51.1", features = ["full"] } tracing = "0.1" diff --git a/dlna/Cargo.toml b/dlna/Cargo.toml index 1bfa62c..1b770ec 100644 --- a/dlna/Cargo.toml +++ b/dlna/Cargo.toml @@ -13,7 +13,7 @@ axum = "0.8.8" httpdate = "1.0" if-addrs = "0.15" socket2 = "0.6" -spritz-core = { version = "0.1.4", path = "../core" } +spritz-core = { version = "0.1.5", path = "../core" } tokio = { version = "1.51.1", features = ["full"] } tower = "0.5" tower-http = { version = "0.6.8", features = ["timeout"] }