Skip to content

Commit 97d3acd

Browse files
authored
chore: release
1 parent 6ca39c4 commit 97d3acd

23 files changed

Lines changed: 111 additions & 29 deletions

Cargo.lock

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@ rust-version = "1.85"
4949
[workspace.dependencies]
5050
hang = { version = "0.19", path = "rs/hang" }
5151
kio = { version = "0.4", path = "rs/kio" }
52-
moq-audio = { version = "0.0.4", path = "rs/moq-audio" }
52+
moq-audio = { version = "0.0.5", path = "rs/moq-audio" }
5353
moq-json = { version = "0.0.4", path = "rs/moq-json" }
5454
moq-loc = { version = "0.1", path = "rs/moq-loc" }
5555
moq-msf = { version = "0.2", path = "rs/moq-msf" }
56-
moq-mux = { version = "0.5", path = "rs/moq-mux" }
56+
moq-mux = { version = "0.6", path = "rs/moq-mux" }
5757
moq-native = { version = "0.17", path = "rs/moq-native", default-features = false }
5858
moq-net = { version = "0.1", path = "rs/moq-net" }
5959
moq-token = { version = "0.6", path = "rs/moq-token" }
60-
moq-video = { version = "0.0.4", path = "rs/moq-video" }
60+
moq-video = { version = "0.0.5", path = "rs/moq-video" }
6161
qmux = { version = "0.2", default-features = false }
6262

6363
serde = { version = "1", features = ["derive"] }

rs/libmoq/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.3.8](https://github.com/moq-dev/moq/compare/libmoq-v0.3.7...libmoq-v0.3.8) - 2026-06-21
11+
12+
### Other
13+
14+
- updated the following local packages: moq-mux, moq-audio
15+
1016
## [0.3.7](https://github.com/moq-dev/moq/compare/libmoq-v0.3.6...libmoq-v0.3.7) - 2026-06-19
1117

1218
### Fixed

rs/libmoq/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Luke Curley <kixelated@gmail.com>", "Brian Medley <bpm@bmedley.org>"
55
repository = "https://github.com/moq-dev/moq"
66
license = "MIT OR Apache-2.0"
77

8-
version = "0.3.7"
8+
version = "0.3.8"
99
edition = "2024"
1010
rust-version.workspace = true
1111

rs/moq-audio/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.0.5](https://github.com/moq-dev/moq/compare/moq-audio-v0.0.4...moq-audio-v0.0.5) - 2026-06-21
11+
12+
### Other
13+
14+
- updated the following local packages: moq-mux
15+
1016
## [0.0.4](https://github.com/moq-dev/moq/compare/moq-audio-v0.0.3...moq-audio-v0.0.4) - 2026-06-16
1117

1218
### Fixed

rs/moq-audio/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Luke Curley <kixelated@gmail.com>"]
55
repository = "https://github.com/moq-dev/moq"
66
license = "MIT OR Apache-2.0"
77

8-
version = "0.0.4"
8+
version = "0.0.5"
99
edition = "2024"
1010
rust-version.workspace = true
1111

rs/moq-boy/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.21](https://github.com/moq-dev/moq/compare/moq-boy-v0.2.20...moq-boy-v0.2.21) - 2026-06-21
11+
12+
### Other
13+
14+
- *(deps)* bump boytacean to 0.12.1 (hold reqwest-middleware at 0.4) ([#1820](https://github.com/moq-dev/moq/pull/1820))
15+
1016
## [0.2.20](https://github.com/moq-dev/moq/compare/moq-boy-v0.2.19...moq-boy-v0.2.20) - 2026-06-19
1117

1218
### Other

rs/moq-boy/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0"
77
keywords = ["moq", "gameboy", "streaming", "emulator", "live"]
88
categories = ["multimedia::video", "emulators", "network-programming"]
99

10-
version = "0.2.20"
10+
version = "0.2.21"
1111
edition = "2024"
1212
rust-version.workspace = true
1313

rs/moq-cli/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.7.34](https://github.com/moq-dev/moq/compare/moq-cli-v0.7.33...moq-cli-v0.7.34) - 2026-06-21
11+
12+
### Added
13+
14+
- *(moq-cli)* wire verbatim MPEG-TS carriage through publish/subscribe ([#1842](https://github.com/moq-dev/moq/pull/1842))
15+
1016
## [0.7.33](https://github.com/moq-dev/moq/compare/moq-cli-v0.7.32...moq-cli-v0.7.33) - 2026-06-19
1117

1218
### Other

rs/moq-ffi/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.23](https://github.com/moq-dev/moq/compare/moq-ffi-v0.2.22...moq-ffi-v0.2.23) - 2026-06-21
11+
12+
### Other
13+
14+
- update Cargo.lock dependencies
15+
1016
## [0.2.22](https://github.com/moq-dev/moq/compare/moq-ffi-v0.2.21...moq-ffi-v0.2.22) - 2026-06-19
1117

1218
### Other

0 commit comments

Comments
 (0)