Skip to content

Commit

Permalink
chore: release (#88)
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] authored Nov 23, 2023
1 parent 7090d70 commit d0afb52
Show file tree
Hide file tree
Showing 14 changed files with 115 additions and 9 deletions.
2 changes: 1 addition & 1 deletion clusters/local/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ media-utils = { workspace = true }
transport = { workspace = true }
async-trait = { workspace = true }
async-std = { workspace = true }
parking_lot = { workspace = true }
parking_lot = { workspace = true }
17 changes: 17 additions & 0 deletions clusters/sdn/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.0](https://github.com/8xFF/atm0s-media-server/releases/tag/atm0s-media-server-cluster-sdn-v0.1.0) - 2023-11-23

### Fixed
- update deps version for avoiding *, updated atm0s-sdn to 0.1.1 ([#87](https://github.com/8xFF/atm0s-media-server/pull/87))
- auto build releases and publish docker ([#84](https://github.com/8xFF/atm0s-media-server/pull/84))

### Other
- remove publish = false ([#73](https://github.com/8xFF/atm0s-media-server/pull/73))
- rename package. added release-plz for auto manage version ([#70](https://github.com/8xFF/atm0s-media-server/pull/70))
2 changes: 1 addition & 1 deletion clusters/sdn/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ atm0s-sdn = { version = "0.1.1", features = ["all"]}
serde = { workspace = true }
bincode = { version = "1" }
futures = { workspace = true }
bytes = { version = "1.5" }
bytes = { version = "1.5" }
2 changes: 1 addition & 1 deletion packages/cluster/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ license = "MIT"
[dependencies]
transport = { workspace = true }
async-trait = { workspace = true }
serde = { workspace = true }
serde = { workspace = true }
2 changes: 1 addition & 1 deletion packages/endpoint/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ cluster = { workspace = true }
transport = { workspace = true }
media-utils = { workspace = true }
serde = { workspace = true }
futures = { workspace = true }
futures = { workspace = true }
2 changes: 1 addition & 1 deletion packages/media-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ description = "Utils for atm0s-media-server"
serde = { workspace = true }
sorted-vec = "0.8"
poem-openapi = { version = "3.0" }
log = { workspace = true }
log = { workspace = true }
2 changes: 1 addition & 1 deletion packages/transport/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ license = "MIT"
async-trait = { workspace = true }
async-std = { workspace = true }
media-utils = { workspace = true }
serde = { workspace = true }
serde = { workspace = true }
25 changes: 25 additions & 0 deletions servers/media/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.0](https://github.com/8xFF/atm0s-media-server/releases/tag/atm0s-media-server-v0.1.0) - 2023-11-23

### Added
- whip/whep protocol, embed js samples ([#76](https://github.com/8xFF/atm0s-media-server/pull/76))

### Fixed
- auto build releases and publish docker ([#84](https://github.com/8xFF/atm0s-media-server/pull/84))

### Other
- remove publish = false ([#73](https://github.com/8xFF/atm0s-media-server/pull/73))
- rename package. added release-plz for auto manage version ([#70](https://github.com/8xFF/atm0s-media-server/pull/70))
- Update Rust crate clap to 4.4.8 ([#53](https://github.com/8xFF/atm0s-media-server/pull/53))
- Update Rust crate clap to 4.4.7 ([#23](https://github.com/8xFF/atm0s-media-server/pull/23))
- simple rtmp server with SAN I/O style ([#40](https://github.com/8xFF/atm0s-media-server/pull/40))
- 17 intergrate with bluesea sdn v4 ([#18](https://github.com/8xFF/atm0s-media-server/pull/18))
- cargo fmt
- break between media-server and transports ([#12](https://github.com/8xFF/atm0s-media-server/pull/12))
2 changes: 1 addition & 1 deletion servers/sip-gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ poem = "1.3"
poem-openapi = { version = "3.0", features = ["swagger-ui"] }
env_logger = { workspace = true }
serde = { workspace = true }
rsip = "0.4.0"
rsip = "0.4.0"
17 changes: 17 additions & 0 deletions transports/rtmp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.0](https://github.com/8xFF/atm0s-media-server/releases/tag/atm0s-media-server-transport-rtmp-v0.1.0) - 2023-11-23

### Fixed
- update deps version for avoiding *, updated atm0s-sdn to 0.1.1 ([#87](https://github.com/8xFF/atm0s-media-server/pull/87))
- auto build releases and publish docker ([#84](https://github.com/8xFF/atm0s-media-server/pull/84))

### Other
- update xflv to 0.3.0 ([#48](https://github.com/8xFF/atm0s-media-server/pull/48))
- simple rtmp server with SAN I/O style ([#40](https://github.com/8xFF/atm0s-media-server/pull/40))
2 changes: 1 addition & 1 deletion transports/rtmp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ rtp = "0.9.0"
bytes = "1"
xflv = "0.3.0"
fdk-aac = "0.5.0"
opus = "0.3.0"
opus = "0.3.0"
17 changes: 17 additions & 0 deletions transports/sip/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.0](https://github.com/8xFF/atm0s-media-server/releases/tag/atm0s-media-server-transport-sip-v0.1.0) - 2023-11-23

### Fixed
- update deps version for avoiding *, updated atm0s-sdn to 0.1.1 ([#87](https://github.com/8xFF/atm0s-media-server/pull/87))
- auto build releases and publish docker ([#84](https://github.com/8xFF/atm0s-media-server/pull/84))

### Other
- rename package. added release-plz for auto manage version ([#70](https://github.com/8xFF/atm0s-media-server/pull/70))
- 9 incomplete sip server ([#52](https://github.com/8xFF/atm0s-media-server/pull/52))
30 changes: 30 additions & 0 deletions transports/webrtc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.0](https://github.com/8xFF/atm0s-media-server/releases/tag/atm0s-media-server-transport-webrtc-v0.1.0) - 2023-11-23

### Added
- whip/whep protocol, embed js samples ([#76](https://github.com/8xFF/atm0s-media-server/pull/76))

### Fixed
- update deps version for avoiding *, updated atm0s-sdn to 0.1.1 ([#87](https://github.com/8xFF/atm0s-media-server/pull/87))
- auto build releases and publish docker ([#84](https://github.com/8xFF/atm0s-media-server/pull/84))

### Other
- rename package. added release-plz for auto manage version ([#70](https://github.com/8xFF/atm0s-media-server/pull/70))
- update sdn, str0m. implement remb. fixed single video slow bootstrap ([#68](https://github.com/8xFF/atm0s-media-server/pull/68))
- update few simple unit tests ([#60](https://github.com/8xFF/atm0s-media-server/pull/60))
- Bump criterion from 0.4.0 to 0.5.1 ([#28](https://github.com/8xFF/atm0s-media-server/pull/28))
- Bump lz4_flex from 0.9.5 to 0.11.1 ([#27](https://github.com/8xFF/atm0s-media-server/pull/27))
- Update Rust crate flate2 to 1.0.28 ([#22](https://github.com/8xFF/atm0s-media-server/pull/22))
- update with newest sdn ([#21](https://github.com/8xFF/atm0s-media-server/pull/21))
- 17 intergrate with bluesea sdn v4 ([#18](https://github.com/8xFF/atm0s-media-server/pull/18))
- cargo fmt
- dynamic payload type from remote ([#16](https://github.com/8xFF/atm0s-media-server/pull/16))
- update udp_sas for fixing unstable ([#14](https://github.com/8xFF/atm0s-media-server/pull/14))
- break between media-server and transports ([#12](https://github.com/8xFF/atm0s-media-server/pull/12))
2 changes: 1 addition & 1 deletion transports/webrtc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ criterion = { version = "0.5", features = ["html_reports"] }

[[bench]]
name = "sdp_rewrite"
harness = false
harness = false

0 comments on commit d0afb52

Please sign in to comment.