Skip to content
This repository has been archived by the owner on Aug 25, 2021. It is now read-only.

Commit

Permalink
Prepare 0.1.0 release of 'medea-control-api-proto' crate
Browse files Browse the repository at this point in the history
Additionally:
- fix copyright year in 'medea-coturn-telnet-client' README
  • Loading branch information
tyranron committed Feb 1, 2021
1 parent f04f56b commit 476e7f0
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 20 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ wait.port:
release-crates-token = $(if $(call eq,$(token),),${CARGO_TOKEN},$(token))

release.crates:
ifneq ($(filter $(crate),medea medea-jason medea-client-api-proto medea-coturn-telnet-client medea-macro medea-reactive),)
ifneq ($(filter $(crate),medea medea-jason medea-client-api-proto medea-control-api-proto medea-coturn-telnet-client medea-macro medea-reactive),)
cd $(crate-dir)/ && \
$(if $(call eq,$(publish),yes),\
cargo publish --token $(release-crates-token) ,\
Expand Down
2 changes: 1 addition & 1 deletion crates/medea-coturn-telnet-client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ medea-coturn-telnet-client

## License

Copyright © 2020 Instrumentisto Team, <https://github.com/instrumentisto>
Copyright © 2021 Instrumentisto Team, <https://github.com/instrumentisto>

This software is subject to the terms of the [Blue Oak Model License 1.0.0](https://github.com/instrumentisto/medea/blob/master/crates/medea-coturn-telnet-client/LICENSE.md). If a copy of the [BlueOak-1.0.0](https://spdx.org/licenses/BlueOak-1.0.0.html) license was not distributed with this file, You can obtain one at <https://blueoakcouncil.org/license/1.0.0>.

Expand Down
2 changes: 1 addition & 1 deletion proto/control-api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ All user visible changes to this project will be documented in this file. This p



## TBD [0.1.0] · 2019-??-??
## [0.1.0] · 2021-02-01
[0.1.0]: /../../tree/medea-control-api-proto-0.1.0/proto/control-api

[Milestone](/../../milestone/2) | [Roadmap](/../../issues/27)
Expand Down
2 changes: 1 addition & 1 deletion proto/control-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "medea-control-api-proto"
version = "0.1.0-dev"
version = "0.1.0"
edition = "2018"
description = "Control API protocol implementation for Medea media server"
authors = ["Instrumentisto Team <[email protected]>"]
Expand Down
23 changes: 8 additions & 15 deletions proto/control-api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,38 +2,31 @@ Medea Control API protocol
==========================

[![Crates.io](https://img.shields.io/crates/v/medea-control-api-proto)](https://crates.io/crates/medea-control-api-proto)
![Crates.io downloads](https://img.shields.io/crates/d/medea-control-api-proto)
![Crates.io license](https://img.shields.io/crates/l/medea-control-api-proto)
![Unsafe forbidden](https://img.shields.io/badge/unsafe-forbidden-success.svg)
[![Rust docs](https://docs.rs/medea-control-api-proto/badge.svg)](https://docs.rs/medea-control-api-proto)

[API Docs](https://docs.rs/medea-control-api-proto) |
[Changelog](https://github.com/instrumentisto/medea/blob/master/proto/control-api/CHANGELOG.md)

Control API protocol implementation for [Medea] media server.
[Control API] protocol implementation for [Medea] media server.

__Currently, in early development phase.__




## Prerequisites

- CMake >= 3.8.0
- Rust >= 1.19.0
- binutils >= 2.22
- LLVM and Clang >= 3.9
- protoc >= 3.7 (for rebuilding [protobuf] specs)
Only [gRPC] is supported at the moment.




## License

Copyright © 2019 Instrumentisto Team, https://github.com/instrumentisto
Copyright © 2021 Instrumentisto Team, <https://github.com/instrumentisto>

This software is subject to the terms of the [Blue Oak Model License 1.0.0](https://github.com/instrumentisto/medea/blob/master/proto/control-api/LICENSE.md). If a copy of the [BlueOak-1.0.0](https://spdx.org/licenses/BlueOak-1.0.0.html) license was not distributed with this file, You can obtain one at <https://blueoakcouncil.org/license/1.0.0>.





[Control API]: https://github.com/instrumentisto/medea/blob/master/docs/rfc/0001-control-api.md
[gRPC]: https://grpc.io
[Medea]: https://github.com/instrumentisto/medea
[protobuf]: https://github.com/protocolbuffers/protobuf
1 change: 1 addition & 0 deletions proto/control-api/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
//! [Control API]: https://tinyurl.com/yxsqplq7
#![deny(broken_intra_doc_links)]
#![forbid(unsafe_code)]

#[cfg(feature = "grpc")]
pub mod grpc;

0 comments on commit 476e7f0

Please sign in to comment.