Skip to content

Commit 2be5c83

Browse files
committed
Manually run release-plz
1 parent a755386 commit 2be5c83

File tree

20 files changed

+275
-171
lines changed

20 files changed

+275
-171
lines changed

Cargo.lock

Lines changed: 184 additions & 159 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
@@ -13,9 +13,9 @@ members = [
1313
resolver = "2"
1414

1515
[workspace.dependencies]
16-
hang = { version = "0.10", path = "rs/hang" }
17-
moq-lite = { version = "0.11", path = "rs/moq-lite" }
18-
moq-native = { version = "0.11", path = "rs/moq-native" }
16+
hang = { version = "0.11", path = "rs/hang" }
17+
moq-lite = { version = "0.12", path = "rs/moq-lite" }
18+
moq-native = { version = "0.12", path = "rs/moq-native" }
1919
moq-token = { version = "0.5", path = "rs/moq-token" }
2020

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

rs/hang-cli/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.7.4](https://github.com/moq-dev/moq/compare/hang-cli-v0.7.3...hang-cli-v0.7.4) - 2026-01-24
11+
12+
### Other
13+
14+
- Add a builder pattern for constructing clients/servers ([#862](https://github.com/moq-dev/moq/pull/862))
15+
- upgrade to Rust edition 2024 ([#838](https://github.com/moq-dev/moq/pull/838))
16+
1017
## [0.7.3](https://github.com/moq-dev/moq/compare/hang-cli-v0.7.2...hang-cli-v0.7.3) - 2026-01-10
1118

1219
### Added

rs/hang-cli/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.7.3"
8+
version = "0.7.4"
99
edition = "2024"
1010

1111
keywords = ["quic", "http3", "webtransport", "media", "live"]

rs/hang/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.11.0](https://github.com/moq-dev/moq/compare/hang-v0.10.0...hang-v0.11.0) - 2026-01-24
11+
12+
### Added
13+
14+
- *(hang)* add feature flags for third-party dependencies ([#854](https://github.com/moq-dev/moq/pull/854))
15+
16+
### Other
17+
18+
- Add a builder pattern for constructing clients/servers ([#862](https://github.com/moq-dev/moq/pull/862))
19+
- Add #[non_exhaustive] to moq-native configuration. ([#850](https://github.com/moq-dev/moq/pull/850))
20+
- bump mp4-atom to 0.10.0 ([#846](https://github.com/moq-dev/moq/pull/846))
21+
- simplify match statements using let-else syntax ([#840](https://github.com/moq-dev/moq/pull/840))
22+
- upgrade to Rust edition 2024 ([#838](https://github.com/moq-dev/moq/pull/838))
23+
1024
## [0.10.0](https://github.com/moq-dev/moq/compare/hang-v0.9.1...hang-v0.10.0) - 2026-01-10
1125

1226
### Added

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.10.0"
8+
version = "0.11.0"
99
edition = "2024"
1010

1111
keywords = ["quic", "http3", "webtransport", "media", "live"]

rs/libmoq/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.2.5](https://github.com/moq-dev/moq/compare/libmoq-v0.2.4...libmoq-v0.2.5) - 2026-01-24
11+
12+
### Other
13+
14+
- Add a builder pattern for constructing clients/servers ([#862](https://github.com/moq-dev/moq/pull/862))
15+
- Add universal libmoq build for macos ([#861](https://github.com/moq-dev/moq/pull/861))
16+
- Add #[non_exhaustive] to moq-native configuration. ([#850](https://github.com/moq-dev/moq/pull/850))
17+
- upgrade to Rust edition 2024 ([#838](https://github.com/moq-dev/moq/pull/838))
18+
1019
## [0.2.4](https://github.com/moq-dev/moq/compare/libmoq-v0.2.3...libmoq-v0.2.4) - 2026-01-12
1120

1221
## [0.2.3](https://github.com/moq-dev/moq/compare/libmoq-v0.2.2...libmoq-v0.2.3) - 2026-01-10

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.2.4"
8+
version = "0.2.5"
99
edition = "2024"
1010

1111
keywords = ["quic", "http3", "webtransport", "media", "live"]

rs/moq-clock/CHANGELOG.md

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

4646
## [Unreleased]
4747

48+
## [0.10.3](https://github.com/moq-dev/moq/compare/moq-clock-v0.10.2...moq-clock-v0.10.3) - 2026-01-24
49+
50+
### Other
51+
52+
- Add a builder pattern for constructing clients/servers ([#862](https://github.com/moq-dev/moq/pull/862))
53+
- upgrade to Rust edition 2024 ([#838](https://github.com/moq-dev/moq/pull/838))
54+
4855
## [0.10.2](https://github.com/moq-dev/moq/compare/moq-clock-v0.10.1...moq-clock-v0.10.2) - 2026-01-10
4956

5057
### Other

rs/moq-clock/Cargo.toml

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

8-
version = "0.10.2"
8+
version = "0.10.3"
99
edition = "2024"
1010

1111
keywords = ["quic", "http3", "webtransport", "media", "live"]

0 commit comments

Comments
 (0)