Skip to content

Commit 754bd35

Browse files
authored
chore: release
1 parent fa2a6fd commit 754bd35

11 files changed

Lines changed: 182 additions & 79 deletions

File tree

Cargo.lock

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

rs/hang/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.15.2](https://github.com/moq-dev/moq/compare/hang-v0.15.1...hang-v0.15.2) - 2026-03-09
11+
12+
### Other
13+
14+
- Fix OrderedConsumer... for good? ([#1054](https://github.com/moq-dev/moq/pull/1054))
15+
1016
## [0.15.0](https://github.com/moq-dev/moq/compare/hang-v0.14.0...hang-v0.15.0) - 2026-03-03
1117

1218
### 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.15.1"
8+
version = "0.15.2"
99
edition = "2024"
1010

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

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.2.12](https://github.com/moq-dev/moq/compare/libmoq-v0.2.11...libmoq-v0.2.12) - 2026-03-09
11+
12+
### Other
13+
14+
- Improve libmoq C bindings ([#1061](https://github.com/moq-dev/moq/pull/1061))
15+
1016
## [0.2.10](https://github.com/moq-dev/moq/compare/libmoq-v0.2.9...libmoq-v0.2.10) - 2026-03-03
1117

1218
### 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.11"
8+
version = "0.2.12"
99
edition = "2024"
1010

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

rs/moq-lite/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.15.1](https://github.com/moq-dev/moq/compare/moq-lite-v0.15.0...moq-lite-v0.15.1) - 2026-03-09
11+
12+
### Other
13+
14+
- Fix OrderedConsumer... for good? ([#1054](https://github.com/moq-dev/moq/pull/1054))
15+
- Draft-17 message types, SETUP handshake, and parameter encoding ([#1045](https://github.com/moq-dev/moq/pull/1045))
16+
- Log transport and version in relay connection ([#1052](https://github.com/moq-dev/moq/pull/1052))
17+
- Move conducer back into this repo. ([#1050](https://github.com/moq-dev/moq/pull/1050))
18+
- Migrate moq-lite from internal state.rs to conducer crate ([#1047](https://github.com/moq-dev/moq/pull/1047))
19+
- Initial draft-17 encoding support (Rust) ([#1032](https://github.com/moq-dev/moq/pull/1032))
20+
1021
## [0.15.0](https://github.com/moq-dev/moq/compare/moq-lite-v0.14.0...moq-lite-v0.15.0) - 2026-03-03
1122

1223
### Other

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

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

rs/moq-native/CHANGELOG.md

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

4545
## [Unreleased]
4646

47+
## [0.13.3](https://github.com/moq-dev/moq/compare/moq-native-v0.13.2...moq-native-v0.13.3) - 2026-03-09
48+
49+
### Other
50+
51+
- Log transport and version in relay connection ([#1052](https://github.com/moq-dev/moq/pull/1052))
52+
- release ([#1040](https://github.com/moq-dev/moq/pull/1040))
53+
4754
## [0.13.2](https://github.com/moq-dev/moq/compare/moq-native-v0.13.1...moq-native-v0.13.2) - 2026-03-03
4855

4956
### Fixed

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

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

rs/moq-relay/CHANGELOG.md

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

6565
## [Unreleased]
6666

67+
## [0.10.8](https://github.com/moq-dev/moq/compare/moq-relay-v0.10.7...moq-relay-v0.10.8) - 2026-03-09
68+
69+
### Other
70+
71+
- Log transport and version in relay connection ([#1052](https://github.com/moq-dev/moq/pull/1052))
72+
6773
## [0.10.7](https://github.com/moq-dev/moq/compare/moq-relay-v0.10.6...moq-relay-v0.10.7) - 2026-03-03
6874

6975
### Other

0 commit comments

Comments
 (0)