Skip to content

Commit

Permalink
Bump everything to v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
simon-wh committed Oct 30, 2024
1 parent bc31f47 commit 07c4ee0
Show file tree
Hide file tree
Showing 9 changed files with 56 additions and 38 deletions.
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions wooting-analog-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "wooting-analog-common"
version = "0.7.1"
version = "0.8.0"
authors = ["simon-wh <[email protected]>"]
edition = "2018"
license = "MPL-2.0"
homepage = "https://github.com/WootingKb/wooting-analog-sdk"
repository = "https://github.com/WootingKb/wooting-analog-sdk"
description = "Common elements of the Wooting Analog SDK"
keywords = [ "wooting", "keyboard", "analog", "sdk" ]
keywords = ["wooting", "keyboard", "analog", "sdk"]
documentation = "https://docs.rs/wooting-analog-common"

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

[features]
serdes = ["serde"]
serdes = ["serde"]
8 changes: 4 additions & 4 deletions wooting-analog-plugin-dev/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
[package]
name = "wooting-analog-plugin-dev"
version = "0.7.1"
version = "0.8.0"
authors = ["simon-wh <[email protected]>"]
edition = "2018"
license = "MPL-2.0"
homepage = "https://github.com/WootingKb/wooting-analog-sdk"
repository = "https://github.com/WootingKb/wooting-analog-sdk"
description = "Library for designing plugins for the Wooting Analog SDK"
keywords = [ "wooting", "keyboard", "analog", "sdk", "plugin" ]
keywords = ["wooting", "keyboard", "analog", "sdk", "plugin"]
documentation = "https://docs.rs/wooting-analog-plugin-dev"

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

[dependencies]
#use this for local development
wooting-analog-common = { path = "../wooting-analog-common"}
wooting-analog-common = { path = "../wooting-analog-common" }
# Use this when publishing
# wooting-analog-common = "0.7.1"
ffi-support = "0.4"


[lib]
crate-type = ["staticlib", "rlib"]
crate-type = ["staticlib", "rlib"]
8 changes: 5 additions & 3 deletions wooting-analog-plugin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wooting-analog-plugin"
version = "0.7.5"
version = "0.8.0"
authors = ["simon-wh <[email protected]>"]
edition = "2018"
license = "MPL-2.0"
Expand All @@ -12,9 +12,11 @@ readme = "README.md"
[dependencies]
log = "^0.4"
# For dev
wooting-analog-plugin-dev = { path = "../wooting-analog-plugin-dev"}
wooting-analog-plugin-dev = { path = "../wooting-analog-plugin-dev" }
# wooting-analog-plugin-dev = "^0.6"
hidapi = { version = "^2.5", features = ["linux-static-hidraw"], default-features = false }
hidapi = { version = "^2.5", features = [
"linux-static-hidraw",
], default-features = false }
env_logger = "^0.7"
objekt = "^0.1"

Expand Down
4 changes: 2 additions & 2 deletions wooting-analog-sdk-updater/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wooting-analog-sdk-updater"
version = "0.7.5"
version = "0.8.0"
authors = ["simon-wh <[email protected]>"]
edition = "2018"

Expand All @@ -17,4 +17,4 @@ chrono = "0.4"

[dependencies.winapi]
version = "0.3"
features = ["winuser"]
features = ["winuser"]
36 changes: 26 additions & 10 deletions wooting-analog-sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "wooting-analog-sdk"
version = "0.7.5"
version = "0.8.0"
authors = ["simon-wh <[email protected]>"]
edition = "2018"
license = "MPL-2.0"
description = "Wooting Analog SDK"
repository = "https://github.com/WootingKb/wooting-analog-sdk"
homepage = "https://github.com/WootingKb/wooting-analog-sdk"
keywords = [ "wooting", "keyboard", "analog", "sdk" ]
keywords = ["wooting", "keyboard", "analog", "sdk"]
build = "build.rs"
#categories = []
#license-file = "../LICENSE"
Expand All @@ -21,16 +21,16 @@ lazy_static = "*"
ffi-support = "0.4"
scancode = "0.1.2"
bimap = "0.4"
wooting-analog-common = { path = "../wooting-analog-common"}
wooting-analog-plugin-dev = { path = "../wooting-analog-plugin-dev"}
wooting-analog-common = { path = "../wooting-analog-common" }
wooting-analog-plugin-dev = { path = "../wooting-analog-plugin-dev" }

[dev-dependencies]
shared_memory = "^0.8"

[build-dependencies]
cmake = "0.1"
wooting-analog-common = { path = "../wooting-analog-common"}
wooting-analog-plugin-dev = { path = "../wooting-analog-plugin-dev"}
wooting-analog-common = { path = "../wooting-analog-common" }
wooting-analog-plugin-dev = { path = "../wooting-analog-plugin-dev" }


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

[package.metadata.deb]
assets = [
["../target/release-artifacts/libwooting_analog_sdk.so", "usr/lib/", "755"],
["../target/release-artifacts/libwooting_analog_plugin.so", "usr/local/share/WootingAnalogPlugins/wooting-analog-plugin/", "755"],
["../target/release-artifacts/libwooting_analog_test_plugin.so", "usr/local/share/WootingAnalogPlugins/wooting-test-plugin/", "755"],
["../target/release-artifacts/wooting-analog-virtual-control", "usr/bin/", "755"],
[
"../target/release-artifacts/libwooting_analog_sdk.so",
"usr/lib/",
"755",
],
[
"../target/release-artifacts/libwooting_analog_plugin.so",
"usr/local/share/WootingAnalogPlugins/wooting-analog-plugin/",
"755",
],
[
"../target/release-artifacts/libwooting_analog_test_plugin.so",
"usr/local/share/WootingAnalogPlugins/wooting-test-plugin/",
"755",
],
[
"../target/release-artifacts/wooting-analog-virtual-control",
"usr/bin/",
"755",
],
]
depends = "libhidapi-hidraw0, libudev1, $auto"
priority = "optional"
6 changes: 3 additions & 3 deletions wooting-analog-test-plugin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "wooting-analog-test-plugin"
version = "0.7.1"
version = "0.8.0"
authors = ["simon-wh <[email protected]>"]
edition = "2018"

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

[dependencies]
wooting-analog-plugin-dev = { path = "../wooting-analog-plugin-dev"}
wooting-analog-plugin-dev = { path = "../wooting-analog-plugin-dev" }
shared_memory = "^0.8"
log = "^0.4"
env_logger = "^0.8"

[lib]
crate-type = ["cdylib", "rlib"]
crate-type = ["cdylib", "rlib"]
6 changes: 3 additions & 3 deletions wooting-analog-virtual-control/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "wooting-analog-virtual-control"
version = "0.7.1"
version = "0.8.0"
authors = ["simon-wh <[email protected]>"]
edition = "2018"


[dependencies]
wooting-analog-common = { path = "../wooting-analog-common"}
wooting-analog-common = { path = "../wooting-analog-common" }
shared_memory = "^0.8"
log = "^0.4"
iced = "^0.4"
env_logger = "0.8"
lazy_static = "*"
wooting-analog-test-plugin = { path="../wooting-analog-test-plugin" }
wooting-analog-test-plugin = { path = "../wooting-analog-test-plugin" }
4 changes: 2 additions & 2 deletions wooting-analog-wrapper/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wooting-analog-wrapper"
version = "0.7.1"
version = "0.8.0"
authors = ["simon-wh <[email protected]>"]
edition = "2018"
license = "MPL-2.0"
Expand All @@ -10,7 +10,7 @@ repository = "https://github.com/WootingKb/wooting-analog-sdk"
[dependencies]
lazy_static = "*"
libloading = "^0.5"
wooting-analog-common = { path = "../wooting-analog-common"}
wooting-analog-common = { path = "../wooting-analog-common" }
ctrlc = { version = "3", features = ["termination"] }

[lib]
Expand Down

0 comments on commit 07c4ee0

Please sign in to comment.