Skip to content

Commit 157ee7f

Browse files
committed
chore(release): prepare for 0.5.0
1 parent 4dfa912 commit 157ee7f

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1-
## Unreleased
1+
## 0.5.0
2+
3+
This release adds [OpenRPC](https://open-rpc.org/) generation support.
24

35
- Added `openrpc.json` output: enable it with an `openrpc` feature and `openrpc_outdir` attribute, like this `#[rpc(openrpc_outdir = "./")]`
46
- Breaking: you now need to specify that you want typescript bindings as they are not enabled by default `#[rpc(ts_outdir = "typescript/generated")]` instead of just `#[rpc]`
7+
- Add public `RpcSession.process_incoming()` method
8+
- Move scripts into scripts/ directory
59

610
## 0.4.4
711

typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "yerpc",
33
"type": "module",
4-
"version": "0.4.3",
4+
"version": "0.5.0",
55
"author": "Franz Heinzmann <Frando>",
66
"license": "MIT OR Apache-2.0",
77
"main": "./dist/index.js",

yerpc-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yerpc_derive"
3-
version = "0.4.2"
3+
version = "0.5.0"
44
edition = "2018"
55
description = "Proc macros for yerpc"
66
license = "Apache-2.0/MIT"

yerpc-tide/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yerpc-tide"
3-
version = "0.4.2"
3+
version = "0.5.0"
44
edition = "2021"
55
license = "Apache-2.0/MIT"
66
description = "tide integration for the yerpc JSON-RPC library"
@@ -16,7 +16,7 @@ authors = [
1616
tide = "0.16.0"
1717
tide-websockets = "0.4.0"
1818
async-std = "1.11.0"
19-
yerpc = { path = "../yerpc", version = "0.4" }
19+
yerpc = { path = "../yerpc", version = "0.5" }
2020
serde_json = "1.0.79"
2121
anyhow = "1.0.57"
2222
futures = "0.3.21"

yerpc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yerpc"
3-
version = "0.4.4"
3+
version = "0.5.0"
44
edition = "2021"
55
license = "Apache-2.0/MIT"
66
repository = "https://github.com/deltachat/yerpc"
@@ -16,7 +16,7 @@ name = "generate-base-types"
1616
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1717

1818
[dependencies]
19-
yerpc_derive = { path = "../yerpc-derive", version = "0.4" }
19+
yerpc_derive = { path = "../yerpc-derive", version = "0.5" }
2020
async-trait = "0.1.53"
2121
serde = { version = "1.0.136", features = ["derive"] }
2222
serde_json = "1.0.79"

0 commit comments

Comments
 (0)