Skip to content

Commit 45dd9e1

Browse files
authored
Merge pull request #19 from spinkube/repo-rename-recent-changes-fix
Repo Rename Reflections and Updated Plugin Binary [Emergency Fix]
2 parents ae69a25 + b1118f9 commit 45dd9e1

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "trigger-mqtt"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55

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

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The plugin then instantiates a Wasm component and injects the message to the com
1313
Install MQTT Plugin:
1414

1515
```
16-
spin plugin install --url https://raw.githubusercontent.com/spinkube/spin-mqtt-trigger-sdk/main/trigger-mqtt-remote.json --yes
16+
spin plugin install --url https://raw.githubusercontent.com/spinkube/spin-trigger-mqtt/main/trigger-mqtt-remote.json --yes
1717
```
1818

1919
[Note: release management for multiple versions of this plugin/trigger will be added soon]
@@ -27,7 +27,7 @@ If you want to learn more about Spin's plugin model, read [here](https://www.fer
2727
Install MQTT Template:
2828

2929
```
30-
spin templates install --git https://github.com/spinkube/spin-mqtt-trigger-sdk --upgrade
30+
spin templates install --git https://github.com/spinkube/spin-trigger-mqtt --upgrade
3131
```
3232

3333
### Create Spin App
@@ -78,7 +78,7 @@ SPIN_VARIABLE_PASSWORD=password spin up
7878

7979
## Dev Loop [Build and Install from Source]
8080

81-
* Open the repo in Dev Container or in pre-configured GitHub [Codespace](https://codespaces.new/spinkube/spin-mqtt-trigger-sdk)
81+
* Open the repo in Dev Container or in pre-configured GitHub [Codespace](https://codespaces.new/spinkube/spin-trigger-mqtt)
8282
* Run ```make``` to build and install the plugin locally.
8383
* Update ```examples/mqtt-app/spin.toml``` to reflect your MQTT server details and ensure it's accessible on the network.
8484
* Run ```spin build --up --from examples/mqtt-app/spin.toml``` to run the example Spin app.

spin-pluginify.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = "trigger-mqtt"
2-
version = "0.1.0"
2+
version = "0.2.0"
33
spin_compatibility = ">=2.0"
44
license = "MIT"
55
package = "./target/release/trigger-mqtt"

templates/mqtt-rust/content/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ crate-type = [ "cdylib" ]
1111
[dependencies]
1212
anyhow = "1"
1313
chrono = "*"
14-
spin-mqtt-sdk = { git = "https://github.com/spinkube/spin-mqtt-trigger-sdk"}
14+
spin-mqtt-sdk = { git = "https://github.com/spinkube/spin-trigger-mqtt"}
1515

1616
[workspace]
Binary file not shown.

trigger-mqtt-remote.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"name": "trigger-mqtt",
33
"description": "Mqtt trigger plugin for linux/amd64, more platforms will be added later.",
4-
"homepage": "https://github.com/spinkube/spin-mqtt-trigger-sdk",
5-
"version": "0.1.0",
6-
"spinCompatibility": ">=2.3",
7-
"license": "Apache-2.0",
4+
"homepage": "https://github.com/spinkube/spin-trigger-mqtt",
5+
"version": "0.2.0",
6+
"spinCompatibility": ">=2.0",
7+
"license": "MIT",
88
"packages": [
99
{
1010
"os": "linux",
1111
"arch": "amd64",
12-
"url": "https://raw.githubusercontent.com/spinkube/spin-mqtt-trigger-sdk/main/trigger-mqtt.tar.gz",
13-
"sha256": "b64aae1ef2211e197571e474702d37c2833d578c0bc04ffd9de0bb5d6166fed5"
12+
"url": "https://raw.githubusercontent.com/spinkube/spin-trigger-mqtt/main/trigger-mqtt-0.2.0-linux-x86_64.tar.gz",
13+
"sha256": "bcd52236b06ba58e0d959085386651a6bcf3afffa91f934487368ba7dcd4a844"
1414
}
1515
]
1616
}

0 commit comments

Comments
 (0)