Skip to content

Commit

Permalink
release 7.0.1 (paritytech#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
debris committed Jun 14, 2017
1 parent adece36 commit 415d0d8
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 12 deletions.
16 changes: 13 additions & 3 deletions README.md
Expand Up @@ -11,13 +11,23 @@ Transport-agnostic `core` and transport servers for `http`, `ipc`, `websockets`
[Documentation](http://paritytech.github.io/jsonrpc/jsonrpc/index.html)

## Sub-projects
- [jsonrpc-core](./core)
- [jsonrpc-http-server](./http)
- [jsonrpc-core](./core) [![crates.io][core-image]][core-url]
- [jsonrpc-http-server](./http) [![crates.io][http-server-image]][http-server-url]
- [jsonrpc-minihttp-server](./minihttp)
- [jsonrpc-ipc-server](./ipc)
- [jsonrpc-tcp-server](./tcp)
- [jsonrpc-tcp-server](./tcp) [![crates.io][tcp-server-image]][tcp-server-url]
- [jsonrpc-ws-server](./ws)
- [jsonrpc-macros](./macros)
- [jsonrpc-server-utils](./server-utils) [![crates.io][server-utils-image]][server-utils-url]

[core-image]: https://img.shields.io/crates/v/jsonrpc-core.svg
[core-url]: https://crates.io/crates/jsonrpc-core
[http-server-image]: https://img.shields.io/crates/v/jsonrpc-http-server.svg
[http-server-url]: https://crates.io/crates/jsonrpc-http-server
[tcp-server-image]: https://img.shields.io/crates/v/jsonrpc-tcp-server.svg
[tcp-server-url]: https://crates.io/crates/jsonrpc-tcp-server
[server-utils-image]: https://img.shields.io/crates/v/jsonrpc-server-utils.svg
[server-utils-url]: https://crates.io/crates/jsonrpc-server-utils

## Examples

Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Expand Up @@ -4,7 +4,7 @@ homepage = "https://github.com/paritytech/jsonrpc"
repository = "https://github.com/paritytech/jsonrpc"
license = "MIT"
name = "jsonrpc-core"
version = "7.0.0"
version = "7.0.1"
authors = ["debris <marek.kotewicz@gmail.com>"]
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "serde"]
documentation = "https://paritytech.github.io/jsonrpc/jsonrpc_core/index.html"
Expand Down
2 changes: 1 addition & 1 deletion http/Cargo.toml
Expand Up @@ -4,7 +4,7 @@ homepage = "https://github.com/paritytech/jsonrpc"
repository = "https://github.com/paritytech/jsonrpc"
license = "MIT"
name = "jsonrpc-http-server"
version = "7.0.0"
version = "7.0.1"
authors = ["debris <marek.kotewicz@gmail.com>"]
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "server"]
documentation = "https://paritytech.github.io/jsonrpc/jsonrpc_http_server/index.html"
Expand Down
2 changes: 1 addition & 1 deletion ipc/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "jsonrpc-ipc-server"
description = "IPC server for JSON-RPC"
version = "7.0.0"
version = "7.0.1"
authors = ["Nikolay Volf <nikvolf@gmail.com>"]
license = "MIT"
homepage = "https://github.com/paritytech/jsonrpc"
Expand Down
2 changes: 1 addition & 1 deletion macros/Cargo.toml
Expand Up @@ -4,7 +4,7 @@ homepage = "https://github.com/paritytech/jsonrpc"
repository = "https://github.com/paritytech/jsonrpc"
license = "MIT"
name = "jsonrpc-macros"
version = "7.0.0"
version = "7.0.1"
authors = ["rphmeier <robert@parity.io>"]
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "macros"]
documentation = "https://paritytech.github.io/jsonrpc/jsonrpc_macros/index.html"
Expand Down
2 changes: 1 addition & 1 deletion minihttp/Cargo.toml
Expand Up @@ -4,7 +4,7 @@ homepage = "https://github.com/paritytech/jsonrpc"
repository = "https://github.com/paritytech/jsonrpc"
license = "MIT"
name = "jsonrpc-minihttp-server"
version = "7.0.0"
version = "7.0.1"
authors = ["tomusdrw <tomasz@parity.io>"]
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "server"]
documentation = "https://paritytech.github.io/jsonrpc/jsonrpc_minihttp_server/index.html"
Expand Down
2 changes: 1 addition & 1 deletion pubsub/Cargo.toml
Expand Up @@ -4,7 +4,7 @@ homepage = "https://github.com/paritytech/jsonrpc"
repository = "https://github.com/paritytech/jsonrpc"
license = "MIT"
name = "jsonrpc-pubsub"
version = "7.0.0"
version = "7.0.1"
authors = ["tomusdrw <tomasz@parity.io>"]
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "macros"]
documentation = "https://paritytech.github.io/jsonrpc/jsonrpc_pubsub/index.html"
Expand Down
7 changes: 6 additions & 1 deletion server-utils/Cargo.toml
@@ -1,8 +1,13 @@
[package]
description = "Server utils for jsonrpc-core crate."
name = "jsonrpc-server-utils"
version = "7.0.0"
version = "7.0.1"
authors = ["tomusdrw <tomasz@parity.io>"]
license = "MIT"
keywords = ["jsonrpc", "json-rpc", "json", "rpc", "serde"]
documentation = "https://paritytech.github.io/jsonrpc/jsonrpc_core/index.html"
homepage = "https://github.com/paritytech/jsonrpc"
repository = "https://github.com/paritytech/jsonrpc"

[dependencies]
globset = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion tcp/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "jsonrpc-tcp-server"
description = "TCP/IP server for JSON-RPC"
version = "7.0.0"
version = "7.0.1"
authors = ["NikVolf <nikvolf@gmail.com>"]
license = "MIT"
homepage = "https://github.com/paritytech/jsonrpc"
Expand Down
2 changes: 1 addition & 1 deletion ws/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "jsonrpc-ws-server"
description = "WebSockets server for JSON-RPC"
version = "7.0.0"
version = "7.0.1"
authors = ["tomusdrw <tomasz@parity.io>"]
license = "MIT"
homepage = "https://github.com/paritytech/jsonrpc"
Expand Down

0 comments on commit 415d0d8

Please sign in to comment.