Skip to content

Commit

Permalink
v0.1.3
Browse files Browse the repository at this point in the history
Signed-off-by: iGxnon <igxnon@gmail.com>
  • Loading branch information
iGxnon committed Jul 20, 2024
1 parent 9b28dc3 commit be0d084
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,17 @@

## Unreleased

- Support RFC6298 RttEstimator
---
## 0.1.3

- Preliminary implementing RFC6298 RttEstimator
- Zero copy packets decoding
- Support offline packets lifetime span tracing
- Add experimental `Ping` for clients
- Reduced the overhead when calling `poll_close`
- By introducing a simple time reactor
- Add examples for E2E tracing
- Fixed some API call issues.

---
## 0.1.2
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "raknet-rs"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
license = "Apache-2.0"
authors = ["iGxnon"]
Expand Down
4 changes: 3 additions & 1 deletion src/tests.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(clippy::use_debug)]

use std::collections::HashMap;
use std::iter::repeat;
use std::sync::Arc;
Expand Down Expand Up @@ -93,7 +95,7 @@ impl Drop for TestTraceLogGuard {
if list.is_empty() {
continue;
}
eprintln!("{trace_id:?}",);
eprintln!("{trace_id:?}");
let l = &list[&SpanId::default()];
for (i, root) in l.iter().enumerate() {
dfs(&list, &spans_map, *root, 0, i == l.len() - 1);
Expand Down

0 comments on commit be0d084

Please sign in to comment.