Skip to content

Commit 1dc4789

Browse files
authored
chore: release (#1236)
Co-authored-by: moq-bot[bot] <186640430+moq-bot[bot]@users.noreply.github.com>
1 parent 83c92e3 commit 1dc4789

File tree

21 files changed

+234
-102
lines changed

21 files changed

+234
-102
lines changed

Cargo.lock

Lines changed: 149 additions & 92 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.7](https://github.com/moq-dev/moq/compare/hang-v0.15.6...hang-v0.15.7) - 2026-04-09
11+
12+
### Other
13+
14+
- Add automatic reconnection with exponential backoff ([#1246](https://github.com/moq-dev/moq/pull/1246))
15+
1016
## [0.15.6](https://github.com/moq-dev/moq/compare/hang-v0.15.5...hang-v0.15.6) - 2026-04-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.6"
8+
version = "0.15.7"
99
edition = "2024"
1010
rust-version.workspace = true
1111

rs/moq-boy/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.2.3](https://github.com/moq-dev/moq/compare/moq-boy-v0.2.2...moq-boy-v0.2.3) - 2026-04-09
11+
12+
### Other
13+
14+
- Add per-component latency breakdown for moq-boy ([#1268](https://github.com/moq-dev/moq/pull/1268))
15+
- Add automatic reconnection with exponential backoff ([#1246](https://github.com/moq-dev/moq/pull/1246))
16+
- Reduce moq-boy input latency ([#1253](https://github.com/moq-dev/moq/pull/1253))
17+
1018
## [0.2.1](https://github.com/moq-dev/moq/compare/moq-boy-v0.2.0...moq-boy-v0.2.1) - 2026-04-07
1119

1220
### 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.2"
10+
version = "0.2.3"
1111
edition = "2024"
1212
rust-version.workspace = true
1313

rs/moq-cli/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.7.15](https://github.com/moq-dev/moq/compare/moq-cli-v0.7.14...moq-cli-v0.7.15) - 2026-04-09
11+
12+
### Other
13+
14+
- Clean up CLI publish stats output ([#1263](https://github.com/moq-dev/moq/pull/1263))
15+
- Add import statistics tracking and reporting ([#1242](https://github.com/moq-dev/moq/pull/1242))
16+
- Add automatic reconnection with exponential backoff ([#1246](https://github.com/moq-dev/moq/pull/1246))
17+
1018
## [0.7.14](https://github.com/moq-dev/moq/compare/moq-cli-v0.7.13...moq-cli-v0.7.14) - 2026-04-07
1119

1220
### 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.14"
8+
version = "0.7.15"
99
edition = "2024"
1010
rust-version.workspace = true
1111

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.13](https://github.com/moq-dev/moq/compare/moq-clock-v0.10.12...moq-clock-v0.10.13) - 2026-04-09
49+
50+
### Other
51+
52+
- Add automatic reconnection with exponential backoff ([#1246](https://github.com/moq-dev/moq/pull/1246))
53+
4854
## [0.10.12](https://github.com/moq-dev/moq/compare/moq-clock-v0.10.11...moq-clock-v0.10.12) - 2026-04-07
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.12"
8+
version = "0.10.13"
99
edition = "2024"
1010
rust-version.workspace = true
1111

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.3](https://github.com/moq-dev/moq/compare/moq-ffi-v0.2.2...moq-ffi-v0.2.3) - 2026-04-09
11+
12+
### Other
13+
14+
- Add bandwidth estimation for adaptive bitrate control ([#1208](https://github.com/moq-dev/moq/pull/1208))
15+
1016
## [0.2.2](https://github.com/moq-dev/moq/compare/moq-ffi-v0.2.1...moq-ffi-v0.2.2) - 2026-04-07
1117

1218
### Other

0 commit comments

Comments
 (0)