Skip to content

Commit bf38ecf

Browse files
authored
chore: update version (#30)
1 parent 88af277 commit bf38ecf

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

rust-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "freenet-macros"
3-
version = "0.1.0-rc1"
3+
version = "0.1.1"
44
edition = "2021"
55
rust-version = "1.71.1"
66
publish = true

rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "freenet-stdlib"
3-
version = "0.1.0-rc1"
3+
version = "0.1.1"
44
edition = "2021"
55
rust-version = "1.71.1"
66
publish = true

rust/src/client_api/client_events.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ pub enum ErrorKind {
117117
IncorrectState(ContractKey),
118118
#[error("node not available")]
119119
NodeUnavailable,
120-
#[error("lost the connection with the protocol hanling connections")]
120+
#[error("lost the connection with the protocol handling connections")]
121121
TransportProtocolDisconnect,
122122
#[error("unhandled error: {cause}")]
123123
Unhandled { cause: Cow<'static, str> },

rust/src/client_api/regular.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ async fn request_handler(
145145
}
146146
}
147147
};
148-
tracing::error!(?error, "request handler error");
148+
tracing::debug!(?error, "request handler error");
149149
let error = match error {
150150
Error::ChannelClosed => ErrorKind::ChannelClosed.into(),
151151
other => ClientError::from(format!("{other}")),

0 commit comments

Comments
 (0)