Skip to content

Commit

Permalink
📝 bump version to 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Xudong-Huang committed Mar 1, 2024
1 parent bbe0ee8 commit 8a984b2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "may_rpc"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
authors = ["Xudong Huang <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion may_rpc_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "may_rpc_derive"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
authors = ["Xudong Huang <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/conetty/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
pub use errors::{Error, WireError};
pub use frame::{Frame, ReqBuf, RspBuf};
pub use multiplex_client::MultiplexClient;
pub use server::{TcpServer, UdpServer};
pub use server::{ServerInstance, TcpServer, UdpServer};
pub use stream_client::StreamClient;
pub use stream_ext::StreamExt;
pub use udp_client::UdpClient;
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ pub use serde;

pub use conetty::{
Client, Error, Frame, MultiplexClient, ReqBuf, RspBuf, Server, StreamClient, StreamExt,
TcpServer, UdpClient, UdpServer, UdsServer, WireError,
TcpServer, UdpClient, UdpServer, UdsServer, WireError, ServerInstance
};
pub use may_rpc_derive::{service, Server};

0 comments on commit 8a984b2

Please sign in to comment.