Skip to content

Commit

Permalink
feat: Fixes and release for 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
satlead committed May 9, 2023
1 parent 316c49c commit afed619
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion core/launcher/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "launcher"
version = "0.3.0"
version = "0.4.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion core/main/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# limitations under the License.
[package]
name = "main"
version = "0.3.0"
version = "0.4.0"
edition = "2021"
repository = "https://github.com/rdkcentral/Ripple"
build = "build.rs"
Expand Down
2 changes: 1 addition & 1 deletion core/sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# limitations under the License.
[package]
name = "ripple_sdk"
version = "0.3.0"
version = "0.4.0"
edition = "2021"
repository = "https://github.com/rdkcentral/Ripple"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion device/thunder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[package]
name = "thunder"
version = "0.3.0"
version = "0.4.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 2 additions & 0 deletions device/thunder/src/bootstrap/setup_thunder_processors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ use thunder_ripple_sdk::{
use crate::processors::{
thunder_browser::ThunderBrowserRequestProcessor,
thunder_device_info::ThunderDeviceInfoRequestProcessor,
thunder_events::ThunderOpenEventsProcessor,
thunder_persistent_store::ThunderStorageRequestProcessor,
thunder_remote::ThunderRemoteAccessoryRequestProcessor,
thunder_wifi::ThunderWifiRequestProcessor,
Expand Down Expand Up @@ -50,6 +51,7 @@ impl SetupThunderProcessor {
extn_client.add_request_processor(ThunderRemoteAccessoryRequestProcessor::new(
state.clone().state,
));
extn_client.add_request_processor(ThunderOpenEventsProcessor::new(state.clone().state));
Ok(state)
}
}
2 changes: 1 addition & 1 deletion device/thunder_ripple_sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[package]
name = "thunder_ripple_sdk"
version = "0.3.0"
version = "0.4.0"
edition = "2021"
repository = "https://github.com/rdkcentral/Ripple"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,8 @@ pub trait ThunderEventHandlerProvider {
}
fn get_device_request() -> DeviceSubscribeRequest {
DeviceSubscribeRequest {
module: Self::event_name(),
event_name: Self::module(),
module: Self::module(),
event_name: Self::event_name(),
params: None,
sub_id: Some(Self::get_mapped_event()),
}
Expand Down

0 comments on commit afed619

Please sign in to comment.