Skip to content

Commit 1ac2670

Browse files
authored
chore: release
1 parent 97bcaa1 commit 1ac2670

20 files changed

Lines changed: 120 additions & 35 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ members = [
1515
resolver = "2"
1616

1717
[workspace.dependencies]
18-
hang = { version = "0.14", path = "rs/hang" }
19-
moq-lite = { version = "0.14", path = "rs/moq-lite" }
18+
hang = { version = "0.15", path = "rs/hang" }
19+
moq-lite = { version = "0.15", path = "rs/moq-lite" }
2020
moq-msf = { version = "0.1", path = "rs/moq-msf" }
2121
moq-mux = { version = "0.2", path = "rs/moq-mux" }
2222
moq-native = { version = "0.13", path = "rs/moq-native", default-features = false }

rs/hang/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.15.0](https://github.com/moq-dev/moq/compare/hang-v0.14.0...hang-v0.15.0) - 2026-03-03
11+
12+
### Other
13+
14+
- Add some tests for the ordered consumer. ([#1029](https://github.com/moq-dev/moq/pull/1029))
15+
- Fix an infinite loop in OrderedConsumer ([#1027](https://github.com/moq-dev/moq/pull/1027))
16+
- Add moq-msf crate for MSF catalog support ([#993](https://github.com/moq-dev/moq/pull/993))
17+
- Make Encode trait fallible ([#1000](https://github.com/moq-dev/moq/pull/1000))
18+
- Replace tokio::sync::watch with custom Producer/Subscriber ([#996](https://github.com/moq-dev/moq/pull/996))
19+
1020
## [0.14.0](https://github.com/moq-dev/moq/compare/hang-v0.13.1...hang-v0.14.0) - 2026-02-12
1121

1222
### 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.14.0"
8+
version = "0.15.0"
99
edition = "2024"
1010

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

rs/libmoq/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.2.10](https://github.com/moq-dev/moq/compare/libmoq-v0.2.9...libmoq-v0.2.10) - 2026-03-03
11+
12+
### Other
13+
14+
- Add moq-msf crate for MSF catalog support ([#993](https://github.com/moq-dev/moq/pull/993))
15+
- Replace tokio::sync::watch with custom Producer/Subscriber ([#996](https://github.com/moq-dev/moq/pull/996))
16+
1017
## [0.2.8](https://github.com/moq-dev/moq/compare/libmoq-v0.2.7...libmoq-v0.2.8) - 2026-02-12
1118

1219
### 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.2.9"
8+
version = "0.2.10"
99
edition = "2024"
1010

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

rs/moq-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.8](https://github.com/moq-dev/moq/compare/moq-cli-v0.7.7...moq-cli-v0.7.8) - 2026-03-03
11+
12+
### Other
13+
14+
- Add moq-msf crate for MSF catalog support ([#993](https://github.com/moq-dev/moq/pull/993))
15+
- Replace tokio::sync::watch with custom Producer/Subscriber ([#996](https://github.com/moq-dev/moq/pull/996))
16+
1017
## [0.7.7](https://github.com/moq-dev/moq/compare/moq-cli-v0.7.6...moq-cli-v0.7.7) - 2026-02-12
1118

1219
### Other

rs/moq-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.7"
8+
version = "0.7.8"
99
edition = "2024"
1010

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

rs/moq-clock/CHANGELOG.md

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

4646
## [Unreleased]
4747

48+
## [0.10.7](https://github.com/moq-dev/moq/compare/moq-clock-v0.10.6...moq-clock-v0.10.7) - 2026-03-03
49+
50+
### Other
51+
52+
- Replace tokio::sync::watch with custom Producer/Subscriber ([#996](https://github.com/moq-dev/moq/pull/996))
53+
4854
## [0.10.6](https://github.com/moq-dev/moq/compare/moq-clock-v0.10.5...moq-clock-v0.10.6) - 2026-02-12
4955

5056
### 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.6"
8+
version = "0.10.7"
99
edition = "2024"
1010

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

0 commit comments

Comments
 (0)