Skip to content

Commit

Permalink
Prepare for v0.17.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
emarsden committed Nov 23, 2024
1 parent a1fdfb7 commit 0d47d22
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## [0.17.4] - Unreleased
## [0.17.4] - 2024-11-23

- Serialization: add support for the XML namespace prefix that is traditionally used for the
Microsoft PlayReady scheme (`mspr:`). Patch from @bwjun-tving.
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dash-mpd"
version = "0.17.3"
version = "0.17.4"
authors = ["Eric Marsden <[email protected]>"]
description = "Parse, serialize, download an MPD manifest for MPEG-DASH or WebM-DASH media streaming"
readme = "README.md"
Expand Down Expand Up @@ -64,7 +64,7 @@ axum = "0.7.9"
hyper-serve = { version = "0.6.2" }
axum-auth = "0.7.0"
noxious-client = "1.0.4"
reqwest = { version = "0.12.9", default-features = false, features = ["cookies", "json"] }
reqwest = { version = "0.12.9", default-features = false, features = ["cookies", "json", "blocking"] }
serde_json = "1.0.133"
anyhow = "1.0.93"
roxmltree = "0.20.0"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ default configuration (using an external application as a subprocess).
## Priority of different stream preference options

The library allows you to express a preference ordering for several characteristics of streams in a
DASH manifest (audio language, video resolution, bandwidth/quality, role label). The list belows
DASH manifest (audio language, video resolution, bandwidth/quality, role label). The list below
specifies the order in which these preferences are handled:

- First filter out AdaptationSets in the manifest that do not correspond to our language
Expand Down Expand Up @@ -254,14 +254,14 @@ Add to your `Cargo.toml` file:

```toml
[dependencies]
dash-mpd = "0.17.3"
dash-mpd = "0.17.4"
```

If you don’t need the download functionality and wish to reduce code size, use:

```toml
[dependencies]
dash-mpd = { version = "0.17.3", default-features = false }
dash-mpd = { version = "0.17.4", default-features = false }
```

We endeavour to use **semantic versioning** for this crate despite its 0.x version number: a major
Expand Down

0 comments on commit 0d47d22

Please sign in to comment.