Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] committed Mar 4, 2024
1 parent a1453a0 commit 0ff92a7
Show file tree
Hide file tree
Showing 12 changed files with 44 additions and 18 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions packages/cluster/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.1](https://github.com/8xFF/atm0s-media-server/compare/atm0s-media-server-cluster-v0.3.0...atm0s-media-server-cluster-v0.3.1) - 2024-03-04

### Other
- updated the following local packages: atm0s-media-server-protocol

## [0.3.0](https://github.com/8xFF/atm0s-media-server/compare/atm0s-media-server-cluster-v0.2.1...atm0s-media-server-cluster-v0.3.0) - 2024-02-14

### Added
Expand Down
4 changes: 2 additions & 2 deletions packages/cluster/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atm0s-media-server-cluster"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
description = "Cluster Interface for atm0s-media-server"
license = "MIT"
Expand All @@ -16,7 +16,7 @@ async-trait = { workspace = true }
serde = { workspace = true }
poem-openapi = { workspace = true }
bincode = { version = "1" }
protocol = { package = "atm0s-media-server-protocol", path = "../protocol", version = "0.1.1" }
protocol = { package = "atm0s-media-server-protocol", path = "../protocol", version = "0.1.2" }

async-std = { workspace = true, optional = true }
log = { workspace = true, optional = true }
Expand Down
5 changes: 5 additions & 0 deletions packages/endpoint/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.3](https://github.com/8xFF/atm0s-media-server/compare/atm0s-media-server-endpoint-v0.2.2...atm0s-media-server-endpoint-v0.2.3) - 2024-03-04

### Other
- updated the following local packages: atm0s-media-server-protocol

## [0.2.2](https://github.com/8xFF/atm0s-media-server/compare/atm0s-media-server-endpoint-v0.2.1...atm0s-media-server-endpoint-v0.2.2) - 2024-02-14

### Other
Expand Down
6 changes: 3 additions & 3 deletions packages/endpoint/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[package]
name = "atm0s-media-server-endpoint"
version = "0.2.2"
version = "0.2.3"
edition = "2021"
license = "MIT"
description = "Media Endpoint for atm0s-media-server"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
cluster = { package = "atm0s-media-server-cluster", path = "../cluster", version = "0.3.0" }
cluster = { package = "atm0s-media-server-cluster", path = "../cluster", version = "0.3.1" }
transport = { package = "atm0s-media-server-transport", path = "../transport", version = "0.2.1" }
media-utils = { package = "atm0s-media-server-utils", path = "../media-utils", version = "0.2.1" }
protocol = { package = "atm0s-media-server-protocol", path = "../protocol", version = "0.1.1" }
protocol = { package = "atm0s-media-server-protocol", path = "../protocol", version = "0.1.2" }
audio-mixer = { package = "atm0s-media-server-audio-mixer", path = "../audio-mixer", version = "0.1.1" }
log = { workspace = true }
async-std = { workspace = true }
Expand Down
5 changes: 5 additions & 0 deletions packages/protocol/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.2](https://github.com/8xFF/atm0s-media-server/compare/atm0s-media-server-protocol-v0.1.1...atm0s-media-server-protocol-v0.1.2) - 2024-03-04

### Added
- connector support http export transport ([#233](https://github.com/8xFF/atm0s-media-server/pull/233))

## [0.1.1](https://github.com/8xFF/atm0s-media-server/compare/atm0s-media-server-protocol-v0.1.0...atm0s-media-server-protocol-v0.1.1) - 2024-01-24

### Added
Expand Down
2 changes: 1 addition & 1 deletion packages/protocol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atm0s-media-server-protocol"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
description = "Cluster Protobuf definitions for atm0s-media-server"
license = "MIT"
Expand Down
11 changes: 11 additions & 0 deletions servers/media-server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.5](https://github.com/8xFF/atm0s-media-server/compare/v0.1.4...v0.1.5) - 2024-03-04

### Added
- connector support http export transport ([#233](https://github.com/8xFF/atm0s-media-server/pull/233))

### Fixed
- rpc http bad request response with more info ([#235](https://github.com/8xFF/atm0s-media-server/pull/235))

### Other
- *(deps)* bump clap from 4.5.0 to 4.5.1 ([#239](https://github.com/8xFF/atm0s-media-server/pull/239))

## [0.1.4](https://github.com/8xFF/atm0s-media-server/compare/v0.1.3...v0.1.4) - 2024-02-14

### Added
Expand Down
8 changes: 4 additions & 4 deletions servers/media-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atm0s-media-server"
version = "0.1.4"
version = "0.1.5"
edition = "2021"
license = "MIT"
description = "Decentralized media-server with WebRTC/RTMP/Whip/Whep support"
Expand All @@ -9,10 +9,10 @@ description = "Decentralized media-server with WebRTC/RTMP/Whip/Whep support"

[dependencies]
clap = { version = "4.5.1", features = ["derive", "env"] }
endpoint = { package = "atm0s-media-server-endpoint", path = "../../packages/endpoint", version = "0.2.2" }
endpoint = { package = "atm0s-media-server-endpoint", path = "../../packages/endpoint", version = "0.2.3" }
transport = { package = "atm0s-media-server-transport", path = "../../packages/transport", version = "0.2.1" }
cluster = { package = "atm0s-media-server-cluster", path = "../../packages/cluster", version = "0.3.0" }
protocol = { package = "atm0s-media-server-protocol", path = "../../packages/protocol", version = "0.1.1" }
cluster = { package = "atm0s-media-server-cluster", path = "../../packages/cluster", version = "0.3.1" }
protocol = { package = "atm0s-media-server-protocol", path = "../../packages/protocol", version = "0.1.2" }
media-utils = { package = "atm0s-media-server-utils", path = "../../packages/media-utils", version = "0.2.1" }
transport-webrtc = { package = "atm0s-media-server-transport-webrtc", path = "../../transports/webrtc", version = "0.2.2", optional = true }
transport-rtmp = { package = "atm0s-media-server-transport-rtmp", path = "../../transports/rtmp", version = "0.2.2", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion transports/rtmp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ description = "RTMP transport for atm0s-media-server"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
endpoint = { package = "atm0s-media-server-endpoint", path = "../../packages/endpoint", version = "0.2.2" }
endpoint = { package = "atm0s-media-server-endpoint", path = "../../packages/endpoint", version = "0.2.3" }
transport = { package = "atm0s-media-server-transport", path = "../../packages/transport", version = "0.2.1" }
media-utils = { package = "atm0s-media-server-utils", path = "../../packages/media-utils", version = "0.2.1" }
async-std = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion transports/sip/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ description = "SIP transport for atm0s-media-server"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
endpoint = { package = "atm0s-media-server-endpoint", path = "../../packages/endpoint", version = "0.2.2" }
endpoint = { package = "atm0s-media-server-endpoint", path = "../../packages/endpoint", version = "0.2.3" }
transport = { package = "atm0s-media-server-transport", path = "../../packages/transport", version = "0.2.1" }
media-utils = { package = "atm0s-media-server-utils", path = "../../packages/media-utils", version = "0.2.1" }
async-std = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions transports/webrtc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ description = "Webrtc Transport for atm0s-media-server"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
endpoint = { package = "atm0s-media-server-endpoint", path = "../../packages/endpoint", version = "0.2.2" }
endpoint = { package = "atm0s-media-server-endpoint", path = "../../packages/endpoint", version = "0.2.3" }
transport = { package = "atm0s-media-server-transport", path = "../../packages/transport", version = "0.2.1" }
media-utils = { package = "atm0s-media-server-utils", path = "../../packages/media-utils", version = "0.2.1" }
cluster = { package = "atm0s-media-server-cluster", path = "../../packages/cluster", version = "0.3.0" }
cluster = { package = "atm0s-media-server-cluster", path = "../../packages/cluster", version = "0.3.1" }
async-std = { workspace = true }
async-trait = { workspace = true }

Expand Down

0 comments on commit 0ff92a7

Please sign in to comment.