Skip to content

Commit 662d0ff

Browse files
kate-goldenringLeo Lu
authored and
Leo Lu
committed
Mount /run/udev directory to udev discovery handler by default (project-akri#487)
* Mount /run/udev directory to udev discovery handler by default Signed-off-by: Kate Goldenring <[email protected]> * Bump Akri version Signed-off-by: Kate Goldenring <[email protected]> Signed-off-by: Leo Lu <[email protected]>
1 parent e0d3093 commit 662d0ff

File tree

17 files changed

+31
-31
lines changed

17 files changed

+31
-31
lines changed

Cargo.lock

+14-14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

agent/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agent"
3-
version = "0.8.14"
3+
version = "0.8.15"
44
authors = ["Kate Goldenring <[email protected]>", "<[email protected]>"]
55
edition = "2018"
66
rust-version = "1.61.0"

controller/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "controller"
3-
version = "0.8.14"
3+
version = "0.8.15"
44
55
edition = "2018"
66
rust-version = "1.61.0"

deployment/helm/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.8.14
18+
version: 0.8.15
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
23-
appVersion: 0.8.14
23+
appVersion: 0.8.15

discovery-handler-modules/debug-echo-discovery-handler/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "debug-echo-discovery-handler"
3-
version = "0.8.14"
3+
version = "0.8.15"
44
authors = ["Kate Goldenring <[email protected]>"]
55
edition = "2018"
66
rust-version = "1.61.0"

discovery-handler-modules/onvif-discovery-handler/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "onvif-discovery-handler"
3-
version = "0.8.14"
3+
version = "0.8.15"
44
authors = ["Kate Goldenring <[email protected]>"]
55
edition = "2018"
66
rust-version = "1.61.0"

discovery-handler-modules/opcua-discovery-handler/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "opcua-discovery-handler"
3-
version = "0.8.14"
3+
version = "0.8.15"
44
authors = ["Kate Goldenring <[email protected]>"]
55
edition = "2018"
66
rust-version = "1.61.0"

discovery-handler-modules/udev-discovery-handler/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "udev-discovery-handler"
3-
version = "0.8.14"
3+
version = "0.8.15"
44
authors = ["Kate Goldenring <[email protected]>"]
55
edition = "2018"
66
rust-version = "1.61.0"

discovery-handlers/debug-echo/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "akri-debug-echo"
3-
version = "0.8.14"
3+
version = "0.8.15"
44
authors = ["Kate Goldenring <[email protected]>"]
55
edition = "2018"
66
rust-version = "1.61.0"

discovery-handlers/onvif/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "akri-onvif"
3-
version = "0.8.14"
3+
version = "0.8.15"
44
authors = ["Kate Goldenring <[email protected]>"]
55
edition = "2018"
66
rust-version = "1.61.0"

discovery-handlers/opcua/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "akri-opcua"
3-
version = "0.8.14"
3+
version = "0.8.15"
44
authors = ["Kate Goldenring <[email protected]>"]
55
edition = "2018"
66
rust-version = "1.61.0"

discovery-handlers/udev/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "akri-udev"
3-
version = "0.8.14"
3+
version = "0.8.15"
44
authors = ["Kate Goldenring <[email protected]>"]
55
edition = "2018"
66
rust-version = "1.61.0"

discovery-utils/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "akri-discovery-utils"
3-
version = "0.8.14"
3+
version = "0.8.15"
44
authors = ["Kate Goldenring <[email protected]>"]
55
edition = "2018"
66
rust-version = "1.61.0"

samples/brokers/udev-video-broker/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "udev-video-broker"
3-
version = "0.8.14"
3+
version = "0.8.15"
44
authors = ["Kate Goldenring <[email protected]>", "<[email protected]>"]
55
edition = "2018"
66
rust-version = "1.61.0"

shared/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "akri-shared"
3-
version = "0.8.14"
3+
version = "0.8.15"
44
authors = ["<[email protected]>"]
55
edition = "2018"
66
rust-version = "1.61.0"

version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.8.14
1+
0.8.15

webhooks/validating/configuration/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "webhook-configuration"
3-
version = "0.8.14"
3+
version = "0.8.15"
44
authors = ["DazWilkin <[email protected]>"]
55
edition = "2018"
66
rust-version = "1.61.0"

0 commit comments

Comments
 (0)