Skip to content

Commit 98e77c0

Browse files
committed
doc: Update VERSION/Changelog for 10.0.2/3 for crates
1 parent 5fffbeb commit 98e77c0

29 files changed

Lines changed: 217 additions & 57 deletions

File tree

crates/buttplug/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 10.0.2 (2026-04-01)
2+
3+
## Features
4+
5+
- Update to Buttplug libraries v10.0.2
6+
- Mostly bugfixes
7+
18
# 10.0.0 (2026-01-31)
29

310
## Features

crates/buttplug/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "buttplug"
3-
version = "10.0.0"
3+
version = "10.0.2"
44

55
authors = ["Nonpolynomial Labs, LLC <kyle@nonpolynomial.com>"]
66
description = "Buttplug Intimate Hardware Control Library - Client Library"
@@ -20,5 +20,5 @@ doctest = true
2020
doc = true
2121

2222
[dependencies]
23-
buttplug_client = { version = "10.0.0", path = "../buttplug_client" }
24-
buttplug_transport_websocket_tungstenite = { version = "10.0.0", path = "../buttplug_transport_websocket_tungstenite"}
23+
buttplug_client = { version = "10.0.2", path = "../buttplug_client" }
24+
buttplug_transport_websocket_tungstenite = { version = "10.0.2", path = "../buttplug_transport_websocket_tungstenite"}

crates/buttplug_client/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 10.0.2 (2026-04-01)
2+
3+
## Features
4+
5+
- Update to new async_manager spawn macros
6+
17
# 10.0.1 (2026-03-13)
28

39
## Features

crates/buttplug_client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "buttplug_client"
3-
version = "10.0.1"
3+
version = "10.0.2"
44
authors = ["Nonpolynomial Labs, LLC <kyle@nonpolynomial.com>"]
55
description = "Buttplug Intimate Hardware Control Library - Core Library"
66
license = "BSD-3-Clause"
@@ -24,7 +24,7 @@ tokio-runtime = ["buttplug_core/tokio-runtime"]
2424
wasm = ["buttplug_core/wasm"]
2525

2626
[dependencies]
27-
buttplug_core = { version = "10.0.1", path = "../buttplug_core", default-features = false }
27+
buttplug_core = { version = "10.0.2", path = "../buttplug_core", default-features = false }
2828
futures = "0.3.32"
2929
thiserror = "2.0.18"
3030
log = "0.4.29"

crates/buttplug_client_in_process/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 10.0.2 (2026-04-01)
2+
3+
## Features
4+
5+
- Update to new async_manager spawn macros
6+
17
# 10.0.1 (2026-03-13)
28

39
## Features

crates/buttplug_client_in_process/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "buttplug_client_in_process"
3-
version = "10.0.1"
3+
version = "10.0.2"
44
authors = ["Nonpolynomial Labs, LLC <kyle@nonpolynomial.com>"]
55
description = "Buttplug Intimate Hardware Control Library - Core Library"
66
license = "BSD-3-Clause"
@@ -32,8 +32,8 @@ tokio-runtime = ["buttplug_core/tokio-runtime", "buttplug_client/tokio-runtime",
3232
wasm = ["buttplug_core/wasm", "buttplug_client/wasm", "buttplug_server/wasm"]
3333

3434
[dependencies]
35-
buttplug_core = { version = "10.0.1", path = "../buttplug_core", default-features = false }
36-
buttplug_client = { version = "10.0.1", path = "../buttplug_client", default-features = false }
35+
buttplug_core = { version = "10.0.2", path = "../buttplug_core", default-features = false }
36+
buttplug_client = { version = "10.0.2", path = "../buttplug_client", default-features = false }
3737
buttplug_server = { version = "10.0.1", path = "../buttplug_server", default-features = false }
3838
buttplug_server_device_config = { version = "10.0.2", path = "../buttplug_server_device_config" }
3939
buttplug_server_hwmgr_btleplug = { version = "10.0.1", path = "../buttplug_server_hwmgr_btleplug", optional = true}

crates/buttplug_server/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# 10.0.2 (2026-04-01)
2+
3+
## Features
4+
5+
- Migrate to new async_manager API
6+
- Device protocol support
7+
- Various JoyHub devices
8+
- TryFun Rock
9+
- MyMuse Link Plus
10+
11+
## Bugfixes
12+
13+
- Fix V0/V1 protocol client errors for testing
14+
- Fix Scanning state machine getting stuck, stopping rediscovery of disconnected devices
15+
- Fix message ID generation for DeviceListV4 message
16+
117
# 10.0.1 (2026-03-13)
218

319
## Features

crates/buttplug_server/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "buttplug_server"
3-
version = "10.0.1"
3+
version = "10.0.2"
44
authors = ["Nonpolynomial Labs, LLC <kyle@nonpolynomial.com>"]
55
description = "Buttplug Intimate Hardware Control Library - Core Library"
66
license = "BSD-3-Clause"
@@ -25,8 +25,8 @@ tokio-runtime=["buttplug_core/tokio-runtime"]
2525
wasm=["buttplug_core/wasm", "uuid/js"]
2626

2727
[dependencies]
28-
buttplug_core = { version = "10.0.1", path = "../buttplug_core", default-features = false }
29-
buttplug_server_device_config = { version = "10.0.2", path = "../buttplug_server_device_config" }
28+
buttplug_core = { version = "10.0.2", path = "../buttplug_core", default-features = false }
29+
buttplug_server_device_config = { version = "10.0.3", path = "../buttplug_server_device_config" }
3030
futures = "0.3.32"
3131
futures-util = "0.3.32"
3232
thiserror = "2.0.18"

crates/buttplug_server_device_config/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# 10.0.3 (2026-04-01)
2+
3+
## Features
4+
5+
- Device Support
6+
- Various Joyhub Devices
7+
- TryFun Rock
8+
- MyMuse Link Plus
9+
10+
## Bugfixes
11+
12+
- Vorze Omorfi naming fix
13+
114
# 10.0.2 (2026-03-13)
215

316
- Device Support

crates/buttplug_server_device_config/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "buttplug_server_device_config"
3-
version = "10.0.2"
3+
version = "10.0.3"
44
authors = ["Nonpolynomial Labs, LLC <kyle@nonpolynomial.com>"]
55
description = "Buttplug Intimate Hardware Control Library - Server Device Config Library"
66
license = "BSD-3-Clause"
@@ -19,7 +19,7 @@ doctest = true
1919
doc = true
2020

2121
[dependencies]
22-
buttplug_core = { version = "10.0.1", path = "../buttplug_core", default-features = false }
22+
buttplug_core = { version = "10.0.2", path = "../buttplug_core", default-features = false }
2323
futures = "0.3.32"
2424
futures-util = "0.3.32"
2525
serde = { version = "1.0.228", features = ["derive"] }

0 commit comments

Comments
 (0)