Skip to content

Commit

Permalink
Prepare for v0.2.16 release
Browse files Browse the repository at this point in the history
  • Loading branch information
emarsden committed Mar 30, 2024
1 parent c0c45a1 commit f858ffa
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,19 @@
# Changelog

## [0.2.16] - 2024-03-30

- Improvements to error reporting. Network timeouts and connection errors will now be reported as
different error types. Additional contextual information regarding the underlying source of an
error will be printed. For example, a network connection error caused by a TLS configuration error
will include information on the underlying issue.

- Updates to our dependencies (in particular the reqwest crate used for HTTP requests) should allow
improved compatibility and performance.


## [0.2.15] - 2024-02-24

- Fix the handling of the `--referer` commandline option, now used in all network
- Fix the handling of the `--referer` commandline option, which is now used in all network
requests (bug reported by @yoyo890121).


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-cli"
version = "0.2.15"
version = "0.2.16"
authors = ["Eric Marsden <[email protected]>"]
license = "MIT"
description = "Download media content from a DASH-MPEG or DASH-WebM MPD manifest."
Expand All @@ -18,7 +18,7 @@ tokio = { version = "1.37.0", features = ["rt-multi-thread", "macros"] }
tracing = { version = "0.1.40", features = ["attributes"] }
tracing-subscriber = { version = "0.3", features = ["env-filter", "time"] }
time = { version = "0.3.30", features = ["local-offset"] }
dash-mpd = { git = "https://github.com/emarsden/dash-mpd-rs", default-features = false, features = ["fetch", "compression", "rustls-tls", "scte35"] }
dash-mpd = { version = "0.16.0", default-features = false, features = ["fetch", "compression", "rustls-tls", "scte35"] }
reqwest = { version = "0.12.2", default-features = false, features = ["gzip", "rustls-tls", "socks", "json", "cookies"] }
# We need to stay synchronized with the version used in the bench_scraper crate.
strum = { version = "0.24.1", features = ["derive"] }
Expand Down

0 comments on commit f858ffa

Please sign in to comment.