Skip to content

Commit 299ece1

Browse files
committed
fix(deps): fix bump
1 parent a0249cc commit 299ece1

File tree

6 files changed

+11
-5
lines changed

6 files changed

+11
-5
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/engineioxide-core/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# engineioxide-core 0.2.1
2+
* deps: bump rand from 0.9.1 to 0.10.0
3+
14
# engineioxide-core 0.2.0
25
* MSRV: rust-version is now 1.86 with edition 2024
36

crates/engineioxide-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "engineioxide-core"
33
description = "Engineioxide core types and utilities"
4-
version = "0.2.0"
4+
version = "0.2.1"
55
edition.workspace = true
66
rust-version.workspace = true
77
authors.workspace = true

crates/engineioxide-core/src/sid.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use std::{fmt, str::FromStr};
22

33
use base64::Engine;
4-
use rand::Rng;
4+
use rand::RngExt;
55

66
/// A 128 bit session id type representing a base64 16 char string
77
#[derive(Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord)]

crates/socketioxide/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# socketioxide 0.18.2
2+
* deps: bump rand from 0.9.1 to 0.10.0
3+
14
# socketioxide 0.18.1
25
* fix: issue [#627](https://github.com/Totodore/socketioxide/issues/627). In case of namespace connect failure,
36
the socket was not properly removed from the adapter and the namespace.

crates/socketioxide/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "socketioxide"
33
description = "Socket IO server implementation in rust as a Tower Service."
4-
version = "0.18.1"
4+
version = "0.18.2"
55
edition.workspace = true
66
rust-version.workspace = true
77
authors.workspace = true

0 commit comments

Comments
 (0)