Skip to content

Commit 3278bfc

Browse files
authored
chore: release
1 parent e8ce162 commit 3278bfc

27 files changed

Lines changed: 281 additions & 80 deletions

Cargo.lock

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

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,17 @@ resolver = "2"
4545
rust-version = "1.85"
4646

4747
[workspace.dependencies]
48-
hang = { version = "0.18", path = "rs/hang" }
48+
hang = { version = "0.19", path = "rs/hang" }
4949
kio = { version = "0.3", path = "rs/kio" }
50-
moq-audio = { version = "0.0.2", path = "rs/moq-audio" }
51-
moq-json = { version = "0.0.1", path = "rs/moq-json" }
50+
moq-audio = { version = "0.0.3", path = "rs/moq-audio" }
51+
moq-json = { version = "0.0.2", path = "rs/moq-json" }
5252
moq-loc = { version = "0.1", path = "rs/moq-loc" }
5353
moq-msf = { version = "0.2", path = "rs/moq-msf" }
5454
moq-mux = { version = "0.5", path = "rs/moq-mux" }
55-
moq-native = { version = "0.16", path = "rs/moq-native", default-features = false }
55+
moq-native = { version = "0.17", path = "rs/moq-native", default-features = false }
5656
moq-net = { version = "0.1", path = "rs/moq-net" }
5757
moq-token = { version = "0.6", path = "rs/moq-token" }
58-
moq-video = { version = "0.0.2", path = "rs/moq-video" }
58+
moq-video = { version = "0.0.3", path = "rs/moq-video" }
5959
qmux = { version = "0.0.8", default-features = false }
6060

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

rs/hang/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.19.0](https://github.com/moq-dev/moq/compare/hang-v0.18.1...hang-v0.19.0) - 2026-06-10
11+
12+
### Added
13+
14+
- *(hang,json,moq-mux)* generic catalog with application extensions ([#1658](https://github.com/moq-dev/moq/pull/1658))
15+
16+
### Fixed
17+
18+
- *(moq-relay)* classify malformed auth-API JSON as an upstream 502
19+
20+
### Other
21+
22+
- Revert accidental commit 24d25604 (moq-native connect/reconnect refactor)
23+
- *(moq-native)* migrate from anyhow to thiserror ([#1651](https://github.com/moq-dev/moq/pull/1651))
24+
1025
## [0.18.1](https://github.com/moq-dev/moq/compare/hang-v0.18.0...hang-v0.18.1) - 2026-05-30
1126

1227
### Other

rs/hang/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.18.1"
8+
version = "0.19.0"
99
edition = "2024"
1010
rust-version.workspace = true
1111

rs/libmoq/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.3.4](https://github.com/moq-dev/moq/compare/libmoq-v0.3.3...libmoq-v0.3.4) - 2026-06-10
11+
12+
### Added
13+
14+
- *(hang,json,moq-mux)* generic catalog with application extensions ([#1658](https://github.com/moq-dev/moq/pull/1658))
15+
16+
### Fixed
17+
18+
- *(moq-relay)* classify malformed auth-API JSON as an upstream 502
19+
20+
### Other
21+
22+
- Revert accidental commit 24d25604 (moq-native connect/reconnect refactor)
23+
- *(moq-native)* migrate from anyhow to thiserror ([#1651](https://github.com/moq-dev/moq/pull/1651))
24+
- cross-compile all x86_64-darwin release artifacts on Apple Silicon ([#1623](https://github.com/moq-dev/moq/pull/1623))
25+
1026
## [0.3.3](https://github.com/moq-dev/moq/compare/libmoq-v0.3.2...libmoq-v0.3.3) - 2026-06-03
1127

1228
### Other

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.3"
8+
version = "0.3.4"
99
edition = "2024"
1010
rust-version.workspace = true
1111

rs/moq-audio/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.0.3](https://github.com/moq-dev/moq/compare/moq-audio-v0.0.2...moq-audio-v0.0.3) - 2026-06-10
11+
12+
### Added
13+
14+
- *(moq-video,moq-cli)* webcam capture and publish ([#1669](https://github.com/moq-dev/moq/pull/1669))
15+
- *(hang,json,moq-mux)* generic catalog with application extensions ([#1658](https://github.com/moq-dev/moq/pull/1658))
16+
1017
### Added
1118

1219
- `capture` feature: `capture::Microphone` captures an input device via cpal

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.2"
8+
version = "0.0.3"
99
edition = "2024"
1010
rust-version.workspace = true
1111

rs/moq-boy/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.2.18](https://github.com/moq-dev/moq/compare/moq-boy-v0.2.17...moq-boy-v0.2.18) - 2026-06-10
11+
12+
### Added
13+
14+
- *(moq-video,moq-cli)* webcam capture and publish ([#1669](https://github.com/moq-dev/moq/pull/1669))
15+
- *(hang,json,moq-mux)* generic catalog with application extensions ([#1658](https://github.com/moq-dev/moq/pull/1658))
16+
17+
### Fixed
18+
19+
- *(moq-relay)* classify malformed auth-API JSON as an upstream 502
20+
21+
### Other
22+
23+
- Revert accidental commit 24d25604 (moq-native connect/reconnect refactor)
24+
- *(moq-native)* migrate from anyhow to thiserror ([#1651](https://github.com/moq-dev/moq/pull/1651))
25+
1026
## [0.2.17](https://github.com/moq-dev/moq/compare/moq-boy-v0.2.16...moq-boy-v0.2.17) - 2026-06-03
1127

1228
### 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.17"
10+
version = "0.2.18"
1111
edition = "2024"
1212
rust-version.workspace = true
1313

0 commit comments

Comments
 (0)