Skip to content

Commit 893b03c

Browse files
committed
chore: prepare device config release
1 parent 54ac54e commit 893b03c

29 files changed

Lines changed: 164 additions & 58 deletions

File tree

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.4 (2026-06-01)
2+
3+
## Features
4+
5+
- Update internal Buttplug library dependencies
6+
17
# 10.0.3 (2026-05-31)
28

39
## Features

crates/buttplug_client_in_process/Cargo.toml

Lines changed: 10 additions & 10 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.3"
3+
version = "10.0.4"
44
authors = ["Nonpolynomial Labs, LLC <kyle@nonpolynomial.com>"]
55
description = "Buttplug Intimate Hardware Control Library - Core Library"
66
license = "BSD-3-Clause"
@@ -34,15 +34,15 @@ wasm = ["buttplug_core/wasm", "buttplug_client/wasm", "buttplug_server/wasm"]
3434
[dependencies]
3535
buttplug_core = { version = "10.0.3", path = "../buttplug_core", default-features = false }
3636
buttplug_client = { version = "10.0.3", path = "../buttplug_client", default-features = false }
37-
buttplug_server = { version = "10.0.3", path = "../buttplug_server", default-features = false }
38-
buttplug_server_device_config = { version = "10.1.0", path = "../buttplug_server_device_config" }
39-
buttplug_server_hwmgr_btleplug = { version = "10.0.3", path = "../buttplug_server_hwmgr_btleplug", optional = true}
40-
buttplug_server_hwmgr_hid = { version = "10.0.3", path = "../buttplug_server_hwmgr_hid", optional = true}
41-
buttplug_server_hwmgr_lovense_connect = { version = "10.0.3", path = "../buttplug_server_hwmgr_lovense_connect", optional = true}
42-
buttplug_server_hwmgr_lovense_dongle = { version = "10.0.3", path = "../buttplug_server_hwmgr_lovense_dongle", optional = true}
43-
buttplug_server_hwmgr_serial = { version = "10.0.3", path = "../buttplug_server_hwmgr_serial", optional = true}
44-
buttplug_server_hwmgr_websocket = { version = "10.0.3", path = "../buttplug_server_hwmgr_websocket", optional = true}
45-
buttplug_server_hwmgr_xinput = { version = "10.0.3", path = "../buttplug_server_hwmgr_xinput", optional = true}
37+
buttplug_server = { version = "10.0.4", path = "../buttplug_server", default-features = false }
38+
buttplug_server_device_config = { version = "10.1.1", path = "../buttplug_server_device_config" }
39+
buttplug_server_hwmgr_btleplug = { version = "10.0.4", path = "../buttplug_server_hwmgr_btleplug", optional = true}
40+
buttplug_server_hwmgr_hid = { version = "10.0.4", path = "../buttplug_server_hwmgr_hid", optional = true}
41+
buttplug_server_hwmgr_lovense_connect = { version = "10.0.4", path = "../buttplug_server_hwmgr_lovense_connect", optional = true}
42+
buttplug_server_hwmgr_lovense_dongle = { version = "10.0.4", path = "../buttplug_server_hwmgr_lovense_dongle", optional = true}
43+
buttplug_server_hwmgr_serial = { version = "10.0.4", path = "../buttplug_server_hwmgr_serial", optional = true}
44+
buttplug_server_hwmgr_websocket = { version = "10.0.4", path = "../buttplug_server_hwmgr_websocket", optional = true}
45+
buttplug_server_hwmgr_xinput = { version = "10.0.4", path = "../buttplug_server_hwmgr_xinput", optional = true}
4646
futures = "0.3.32"
4747
futures-util = "0.3.32"
4848
thiserror = "2.0.18"

crates/buttplug_server/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# 10.0.4 (2026-06-01)
2+
3+
## Features
4+
5+
- Update to device configuration v10.1.1 with additional device support
6+
7+
## Bugfixes
8+
9+
- Add new JoyHub Rosella 2 and Svakom Pulse Lite Neo identifiers
10+
- Add heater support to JoyHub Thermos
11+
112
# 10.0.3 (2026-05-31)
213

314
## Features

crates/buttplug_server/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"
3-
version = "10.0.3"
3+
version = "10.0.4"
44
authors = ["Nonpolynomial Labs, LLC <kyle@nonpolynomial.com>"]
55
description = "Buttplug Intimate Hardware Control Library - Core Library"
66
license = "BSD-3-Clause"
@@ -26,7 +26,7 @@ wasm=["buttplug_core/wasm", "uuid/js", "instant/wasm-bindgen"]
2626

2727
[dependencies]
2828
buttplug_core = { version = "10.0.3", path = "../buttplug_core", default-features = false }
29-
buttplug_server_device_config = { version = "10.1.0", path = "../buttplug_server_device_config" }
29+
buttplug_server_device_config = { version = "10.1.1", 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: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
# 10.1.1 (2026-06-01)
2+
3+
## Features
4+
5+
- Device Support
6+
- Adorime Anal Vibrator 2
7+
- Bestvibe Rotational Vibration
8+
- Honey Play Box Frenzy
9+
- Honey Play Box Noah
10+
- JoyHub Aurora II
11+
- JoyHub Mystor
12+
- JoyHub Phantom
13+
- JoyHub Pixel
14+
- JoyHub Rose Star
15+
- JoyHub Sync Flare
16+
- JoyHub Thelma
17+
- JoyHub Vortus
18+
- JoyHub Vows
19+
- Lelo Boomerang
20+
- Luvmazer Fantasy Nova
21+
- Luvmazer Rose Finger Vibe
22+
- WeVibe Jive Lite
23+
24+
## Bugfixes
25+
26+
- Add new JoyHub Rosella 2 and Svakom Pulse Lite Neo identifiers
27+
- Add heater support to JoyHub Thermos
28+
129
# 10.1.0 (2026-05-31)
230

331
## Features

crates/buttplug_server_device_config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "buttplug_server_device_config"
3-
version = "10.1.0"
3+
version = "10.1.1"
44
authors = ["Nonpolynomial Labs, LLC <kyle@nonpolynomial.com>"]
55
description = "Buttplug Intimate Hardware Control Library - Server Device Config Library"
66
license = "BSD-3-Clause"

crates/buttplug_server_hwmgr_btleplug/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 10.0.4 (2026-06-01)
2+
3+
## Features
4+
5+
- Update internal Buttplug library dependencies
6+
17
# 10.0.3 (2026-05-31)
28

39
## Bugfixes

crates/buttplug_server_hwmgr_btleplug/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_hwmgr_btleplug"
3-
version = "10.0.3"
3+
version = "10.0.4"
44
authors = ["Nonpolynomial Labs, LLC <kyle@nonpolynomial.com>"]
55
description = "Buttplug Intimate Hardware Control Library - Core Library"
66
license = "BSD-3-Clause"
@@ -21,8 +21,8 @@ doc = true
2121

2222
[dependencies]
2323
buttplug_core = { version = "10.0.3", path = "../buttplug_core", default-features = false }
24-
buttplug_server = { version = "10.0.3", path = "../buttplug_server", default-features = false }
25-
buttplug_server_device_config = { version = "10.1.0", path = "../buttplug_server_device_config" }
24+
buttplug_server = { version = "10.0.4", path = "../buttplug_server", default-features = false }
25+
buttplug_server_device_config = { version = "10.1.1", path = "../buttplug_server_device_config" }
2626
futures = "0.3.32"
2727
futures-util = "0.3.32"
2828
log = "0.4.29"

crates/buttplug_server_hwmgr_hid/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 10.0.4 (2026-06-01)
2+
3+
## Features
4+
5+
- Update internal Buttplug library dependencies
6+
17
# 10.0.3 (2026-05-31)
28

39
## Bugfixes

crates/buttplug_server_hwmgr_hid/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_hwmgr_hid"
3-
version = "10.0.3"
3+
version = "10.0.4"
44
authors = ["Nonpolynomial Labs, LLC <kyle@nonpolynomial.com>"]
55
description = "Buttplug Intimate Hardware Control Library - Core Library"
66
license = "BSD-3-Clause"
@@ -21,8 +21,8 @@ doc = true
2121

2222
[dependencies]
2323
buttplug_core = { version = "10.0.3", path = "../buttplug_core", default-features = false }
24-
buttplug_server = { version = "10.0.3", path = "../buttplug_server", default-features = false }
25-
buttplug_server_device_config = { version = "10.1.0", path = "../buttplug_server_device_config" }
24+
buttplug_server = { version = "10.0.4", path = "../buttplug_server", default-features = false }
25+
buttplug_server_device_config = { version = "10.1.1", path = "../buttplug_server_device_config" }
2626
futures = "0.3.32"
2727
futures-util = "0.3.32"
2828
log = "0.4.29"

0 commit comments

Comments
 (0)