Skip to content

Commit

Permalink
up to v0.6.2
Browse files Browse the repository at this point in the history
Also update dependencies.

Signed-off-by: Daniel Estévez <[email protected]>
  • Loading branch information
daniestevez committed May 1, 2024
1 parent 13b78fa commit 6fe5aac
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 5 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.6.2] - 2024-05-01

### Added

- Support for handling concurrent TCP connections with `--input TCP`.

### Changed

- Log BBFRAMEs and GSE packets in hex format.

## [0.6.1] - 2024-04-08

### Fixed
Expand Down Expand Up @@ -113,7 +123,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release.

[unreleased]: https://github.com/daniestevez/dvb-gse/compare/v0.6.1...HEAD
[unreleased]: https://github.com/daniestevez/dvb-gse/compare/v0.6.2...HEAD
[0.6.2]: https://github.com/daniestevez/dvb-gse/compare/v0.6.1...v0.6.2
[0.6.1]: https://github.com/daniestevez/dvb-gse/compare/v0.6.0...v0.6.1
[0.6.0]: https://github.com/daniestevez/dvb-gse/compare/v0.5.0...v0.6.0
[0.5.0]: https://github.com/daniestevez/dvb-gse/compare/v0.4.4...v0.5.0
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dvb-gse"
version = "0.6.1"
version = "0.6.2"
edition = "2021"
authors = ["Daniel Estevez <[email protected]>"]
description = "DVB-GSE (Digital Video Brodcast Generic Stream Encapsulation)"
Expand All @@ -21,9 +21,9 @@ cli = ["anyhow", "clap", "env_logger", "libc", "tun-tap"]
anyhow = { version = "1", features = ["std"], optional = true }
bitvec = "1"
bytes = "1.2"
clap = { version = "4.0", features = ["derive"], optional = true }
crc = "3.0"
env_logger = { version = "0.10", optional = true }
clap = { version = "4", features = ["derive"], optional = true }
crc = "3"
env_logger = { version = "0.11", optional = true }
faster-hex = "0.9"
lazy_static = "1.4"
libc = { version = "0.2", optional = true }
Expand Down

0 comments on commit 6fe5aac

Please sign in to comment.