Skip to content

Commit 730a263

Browse files
authored
Fix ibc-relayer-rest crate for publication (#1308)
* Add README to relayer-rest crate * Fix version number in ibc-relayer-rest integration test
1 parent 77e1326 commit 730a263

File tree

2 files changed

+43
-1
lines changed

2 files changed

+43
-1
lines changed

relayer-rest/README.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# IBC Relayer REST Server
2+
3+
[![Crate][crate-image]][crate-link]
4+
[![Docs][docs-image]][docs-link]
5+
[![Build Status][build-image]][build-link]
6+
[![End to End testing][e2e-image]][e2e-link]
7+
[![Apache 2.0 Licensed][license-image]][license-link]
8+
![Rust Stable][rustc-image]
9+
![Rust 1.53+][rustc-version]
10+
11+
This is the repository for the IBC REST server for use in the Hermes IBC relayer.
12+
13+
See the [REST server][rest-doc] section in the Hermes guide for more information.
14+
15+
## License
16+
17+
Copyright © 2021 Informal Systems Inc. and ibc-rs authors.
18+
19+
Licensed under the Apache License, Version 2.0 (the "License"); you may not use the files in this repository except in compliance with the License. You may obtain a copy of the License at
20+
21+
https://www.apache.org/licenses/LICENSE-2.0
22+
23+
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
24+
25+
26+
[//]: # (badges)
27+
28+
[crate-image]: https://img.shields.io/crates/v/ibc-relayer-rest.svg
29+
[crate-link]: https://crates.io/crates/ibc-relayer-rest
30+
[docs-image]: https://docs.rs/ibc-relayer-rest/badge.svg
31+
[docs-link]: https://docs.rs/ibc-relayer-rest/
32+
33+
[build-image]: https://github.com/informalsystems/ibc-rs/workflows/Rust/badge.svg
34+
[build-link]: https://github.com/informalsystems/ibc-rs/actions?query=workflow%3ARust
35+
[e2e-image]: https://github.com/informalsystems/ibc-rs/workflows/End%20to%20End%20testing/badge.svg
36+
[e2e-link]: https://github.com/informalsystems/ibc-rs/actions?query=workflow%3A%22End+to+End+testing%22
37+
[telemetry-doc]: https://hermes.informal.systems/rest-api.html
38+
39+
[license-image]: https://img.shields.io/badge/license-Apache2.0-blue.svg
40+
[license-link]: https://github.com/informalsystems/ibc-rs/blob/master/LICENSE
41+
[rustc-image]: https://img.shields.io/badge/rustc-stable-blue.svg
42+
[rustc-version]: https://img.shields.io/badge/rustc-1.53+-blue.svg

relayer-rest/tests/mock.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ fn version() {
6363

6464
let rest_api_version = VersionInfo {
6565
name: "ibc-relayer-rest".to_string(),
66-
version: "0.1.0".to_string(),
66+
version: "0.7.0".to_string(),
6767
};
6868

6969
let result = vec![version.clone(), rest_api_version];

0 commit comments

Comments
 (0)