prepare v0.3.5

This commit is contained in:
Scott Lamb 2021-11-30 12:37:03 -08:00
parent e1f09771e1
commit 9c85a2dd80
3 changed files with 9 additions and 9 deletions

View File

@ -1,4 +1,4 @@
## unreleased ## `v0.3.5` (2021-11-30)
* [#42](https://github.com/scottlamb/retina/issues/42): support servers that * [#42](https://github.com/scottlamb/retina/issues/42): support servers that
don't send out-of-band H.264 parameters or send invalid parameters; wait for don't send out-of-band H.264 parameters or send invalid parameters; wait for
@ -56,7 +56,7 @@
adopts a URL joining behavior which isn't RFC-compliant but seems to adopts a URL joining behavior which isn't RFC-compliant but seems to
be more compatible in practice. be more compatible in practice.
## v0.1.0 (2021-08-13) ## `v0.1.0` (2021-08-13)
* use `SET_PARAMETERS` rather than `GET_PARAMETERS` for keepalives. * use `SET_PARAMETERS` rather than `GET_PARAMETERS` for keepalives.
The latter doesn't work with GW Security GW4089IP cameras. The latter doesn't work with GW Security GW4089IP cameras.
@ -66,7 +66,7 @@
crate, including `tokio`. (`retina`'s own `tokio` dependency will likely crate, including `tokio`. (`retina`'s own `tokio` dependency will likely
become optional in a future version.) become optional in a future version.)
## v0.0.5 (2021-07-08) ## `v0.0.5` (2021-07-08)
* BREAKING CHANGE: New opaque error type with more uniform, richer error * BREAKING CHANGE: New opaque error type with more uniform, richer error
messages. No more `failure` dependency. messages. No more `failure` dependency.
@ -77,21 +77,21 @@
64-bit platforms). The box is only rarely populated. 64-bit platforms). The box is only rarely populated.
* in `client mp4` example, handle an initial video parameter change correctly. * in `client mp4` example, handle an initial video parameter change correctly.
## v0.0.4 (2021-06-28) ## `v0.0.4` (2021-06-28)
* bugfix: Retina stopped receiving packets after receiving a keepalive response. * bugfix: Retina stopped receiving packets after receiving a keepalive response.
## v0.0.3 (2021-06-28) ## `v0.0.3` (2021-06-28)
* BREAKING CHANGE: `Session<Playing>` now directly implements `Stream` instead of * BREAKING CHANGE: `Session<Playing>` now directly implements `Stream` instead of
through `pkts()`. through `pkts()`.
* Performance improvements. * Performance improvements.
## v0.0.2 (2021-06-25) ## `v0.0.2` (2021-06-25)
* BREAKING CHANGE: Video frames are now provided as a single, contiguous `Bytes`, and * BREAKING CHANGE: Video frames are now provided as a single, contiguous `Bytes`, and
H.264 depacketization is more efficient ([#4](https://github.com/scottlamb/retina/issues/4)). H.264 depacketization is more efficient ([#4](https://github.com/scottlamb/retina/issues/4)).
## v0.0.1 (2021-06-09) ## `v0.0.1` (2021-06-09)
Initial release. Initial release.

2
Cargo.lock generated
View File

@ -923,7 +923,7 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
[[package]] [[package]]
name = "retina" name = "retina"
version = "0.3.4" version = "0.3.5"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"base64", "base64",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "retina" name = "retina"
version = "0.3.4" version = "0.3.5"
authors = ["Scott Lamb <slamb@slamb.org>"] authors = ["Scott Lamb <slamb@slamb.org>"]
license = "MIT/Apache-2.0" license = "MIT/Apache-2.0"
edition = "2018" edition = "2018"