diff --git a/ica-rs/Cargo.toml b/ica-rs/Cargo.toml index ac23c59..0cceec7 100644 --- a/ica-rs/Cargo.toml +++ b/ica-rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ica-rs" -version = "0.4.1" +version = "0.4.2" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/ica-rs/src/main.rs b/ica-rs/src/main.rs index 77c7490..1cbe7e1 100644 --- a/ica-rs/src/main.rs +++ b/ica-rs/src/main.rs @@ -67,7 +67,7 @@ async fn main() { if ica_config.notice_start { for room in ica_config.notice_room.iter() { let startup_msg = crate::data_struct::messages::SendMessage::new( - format!("ica-rs bot v{}", VERSION), + format!("ica-async-rs bot v{}", VERSION), room.clone(), None, ); @@ -90,4 +90,5 @@ async fn main() { socket.disconnect().await.expect("Disconnect failed"); info!("Disconnected"); + } diff --git a/news.md b/news.md index f629057..c7e1599 100644 --- a/news.md +++ b/news.md @@ -1,5 +1,18 @@ # 更新日志 +## 0.4.2 + +现在是 async 版本啦! + +## 0.4.1 + +现在能发送登录信息啦 + +## 0.4.0 + +使用 Rust 从头实现一遍 +\能登录啦/ + ## 0.3.3 适配 Rust 端的配置文件修改