Skip to content

Commit 07c4ee0

Browse files
committed
Bump everything to v0.8.0
1 parent bc31f47 commit 07c4ee0

File tree

9 files changed

+56
-38
lines changed

9 files changed

+56
-38
lines changed

Cargo.lock

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

wooting-analog-common/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "wooting-analog-common"
3-
version = "0.7.1"
3+
version = "0.8.0"
44
authors = ["simon-wh <[email protected]>"]
55
edition = "2018"
66
license = "MPL-2.0"
77
homepage = "https://github.com/WootingKb/wooting-analog-sdk"
88
repository = "https://github.com/WootingKb/wooting-analog-sdk"
99
description = "Common elements of the Wooting Analog SDK"
10-
keywords = [ "wooting", "keyboard", "analog", "sdk" ]
10+
keywords = ["wooting", "keyboard", "analog", "sdk"]
1111
documentation = "https://docs.rs/wooting-analog-common"
1212

1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -25,4 +25,4 @@ serde = { version = "1.0", features = ["derive"], optional = true }
2525
crate-type = ["staticlib", "rlib"]
2626

2727
[features]
28-
serdes = ["serde"]
28+
serdes = ["serde"]
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
[package]
22
name = "wooting-analog-plugin-dev"
3-
version = "0.7.1"
3+
version = "0.8.0"
44
authors = ["simon-wh <[email protected]>"]
55
edition = "2018"
66
license = "MPL-2.0"
77
homepage = "https://github.com/WootingKb/wooting-analog-sdk"
88
repository = "https://github.com/WootingKb/wooting-analog-sdk"
99
description = "Library for designing plugins for the Wooting Analog SDK"
10-
keywords = [ "wooting", "keyboard", "analog", "sdk", "plugin" ]
10+
keywords = ["wooting", "keyboard", "analog", "sdk", "plugin"]
1111
documentation = "https://docs.rs/wooting-analog-plugin-dev"
1212

1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

1515
[dependencies]
1616
#use this for local development
17-
wooting-analog-common = { path = "../wooting-analog-common"}
17+
wooting-analog-common = { path = "../wooting-analog-common" }
1818
# Use this when publishing
1919
# wooting-analog-common = "0.7.1"
2020
ffi-support = "0.4"
2121

2222

2323
[lib]
24-
crate-type = ["staticlib", "rlib"]
24+
crate-type = ["staticlib", "rlib"]

wooting-analog-plugin/Cargo.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wooting-analog-plugin"
3-
version = "0.7.5"
3+
version = "0.8.0"
44
authors = ["simon-wh <[email protected]>"]
55
edition = "2018"
66
license = "MPL-2.0"
@@ -12,9 +12,11 @@ readme = "README.md"
1212
[dependencies]
1313
log = "^0.4"
1414
# For dev
15-
wooting-analog-plugin-dev = { path = "../wooting-analog-plugin-dev"}
15+
wooting-analog-plugin-dev = { path = "../wooting-analog-plugin-dev" }
1616
# wooting-analog-plugin-dev = "^0.6"
17-
hidapi = { version = "^2.5", features = ["linux-static-hidraw"], default-features = false }
17+
hidapi = { version = "^2.5", features = [
18+
"linux-static-hidraw",
19+
], default-features = false }
1820
env_logger = "^0.7"
1921
objekt = "^0.1"
2022

wooting-analog-sdk-updater/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wooting-analog-sdk-updater"
3-
version = "0.7.5"
3+
version = "0.8.0"
44
authors = ["simon-wh <[email protected]>"]
55
edition = "2018"
66

@@ -17,4 +17,4 @@ chrono = "0.4"
1717

1818
[dependencies.winapi]
1919
version = "0.3"
20-
features = ["winuser"]
20+
features = ["winuser"]

wooting-analog-sdk/Cargo.toml

Lines changed: 26 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "wooting-analog-sdk"
3-
version = "0.7.5"
3+
version = "0.8.0"
44
authors = ["simon-wh <[email protected]>"]
55
edition = "2018"
66
license = "MPL-2.0"
77
description = "Wooting Analog SDK"
88
repository = "https://github.com/WootingKb/wooting-analog-sdk"
99
homepage = "https://github.com/WootingKb/wooting-analog-sdk"
10-
keywords = [ "wooting", "keyboard", "analog", "sdk" ]
10+
keywords = ["wooting", "keyboard", "analog", "sdk"]
1111
build = "build.rs"
1212
#categories = []
1313
#license-file = "../LICENSE"
@@ -21,16 +21,16 @@ lazy_static = "*"
2121
ffi-support = "0.4"
2222
scancode = "0.1.2"
2323
bimap = "0.4"
24-
wooting-analog-common = { path = "../wooting-analog-common"}
25-
wooting-analog-plugin-dev = { path = "../wooting-analog-plugin-dev"}
24+
wooting-analog-common = { path = "../wooting-analog-common" }
25+
wooting-analog-plugin-dev = { path = "../wooting-analog-plugin-dev" }
2626

2727
[dev-dependencies]
2828
shared_memory = "^0.8"
2929

3030
[build-dependencies]
3131
cmake = "0.1"
32-
wooting-analog-common = { path = "../wooting-analog-common"}
33-
wooting-analog-plugin-dev = { path = "../wooting-analog-plugin-dev"}
32+
wooting-analog-common = { path = "../wooting-analog-common" }
33+
wooting-analog-plugin-dev = { path = "../wooting-analog-plugin-dev" }
3434

3535

3636
[target.'cfg(windows)'.dependencies]
@@ -41,10 +41,26 @@ crate-type = ["cdylib", "rlib"]
4141

4242
[package.metadata.deb]
4343
assets = [
44-
["../target/release-artifacts/libwooting_analog_sdk.so", "usr/lib/", "755"],
45-
["../target/release-artifacts/libwooting_analog_plugin.so", "usr/local/share/WootingAnalogPlugins/wooting-analog-plugin/", "755"],
46-
["../target/release-artifacts/libwooting_analog_test_plugin.so", "usr/local/share/WootingAnalogPlugins/wooting-test-plugin/", "755"],
47-
["../target/release-artifacts/wooting-analog-virtual-control", "usr/bin/", "755"],
44+
[
45+
"../target/release-artifacts/libwooting_analog_sdk.so",
46+
"usr/lib/",
47+
"755",
48+
],
49+
[
50+
"../target/release-artifacts/libwooting_analog_plugin.so",
51+
"usr/local/share/WootingAnalogPlugins/wooting-analog-plugin/",
52+
"755",
53+
],
54+
[
55+
"../target/release-artifacts/libwooting_analog_test_plugin.so",
56+
"usr/local/share/WootingAnalogPlugins/wooting-test-plugin/",
57+
"755",
58+
],
59+
[
60+
"../target/release-artifacts/wooting-analog-virtual-control",
61+
"usr/bin/",
62+
"755",
63+
],
4864
]
4965
depends = "libhidapi-hidraw0, libudev1, $auto"
5066
priority = "optional"
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[package]
22
name = "wooting-analog-test-plugin"
3-
version = "0.7.1"
3+
version = "0.8.0"
44
authors = ["simon-wh <[email protected]>"]
55
edition = "2018"
66

77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[dependencies]
10-
wooting-analog-plugin-dev = { path = "../wooting-analog-plugin-dev"}
10+
wooting-analog-plugin-dev = { path = "../wooting-analog-plugin-dev" }
1111
shared_memory = "^0.8"
1212
log = "^0.4"
1313
env_logger = "^0.8"
1414

1515
[lib]
16-
crate-type = ["cdylib", "rlib"]
16+
crate-type = ["cdylib", "rlib"]
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[package]
22
name = "wooting-analog-virtual-control"
3-
version = "0.7.1"
3+
version = "0.8.0"
44
authors = ["simon-wh <[email protected]>"]
55
edition = "2018"
66

77

88
[dependencies]
9-
wooting-analog-common = { path = "../wooting-analog-common"}
9+
wooting-analog-common = { path = "../wooting-analog-common" }
1010
shared_memory = "^0.8"
1111
log = "^0.4"
1212
iced = "^0.4"
1313
env_logger = "0.8"
1414
lazy_static = "*"
15-
wooting-analog-test-plugin = { path="../wooting-analog-test-plugin" }
15+
wooting-analog-test-plugin = { path = "../wooting-analog-test-plugin" }

wooting-analog-wrapper/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wooting-analog-wrapper"
3-
version = "0.7.1"
3+
version = "0.8.0"
44
authors = ["simon-wh <[email protected]>"]
55
edition = "2018"
66
license = "MPL-2.0"
@@ -10,7 +10,7 @@ repository = "https://github.com/WootingKb/wooting-analog-sdk"
1010
[dependencies]
1111
lazy_static = "*"
1212
libloading = "^0.5"
13-
wooting-analog-common = { path = "../wooting-analog-common"}
13+
wooting-analog-common = { path = "../wooting-analog-common" }
1414
ctrlc = { version = "3", features = ["termination"] }
1515

1616
[lib]

0 commit comments

Comments
 (0)