Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name = "trigger-command"
version = { workspace = true }
authors = { workspace = true }
edition = { workspace = true }
rust-version = "1.81"
rust-version = "1.86"

[workspace.package]
version = "0.3.2"
version = "0.4.0"
authors = ["Radu Matei <[email protected]>"]
edition = "2021"

Expand Down
10 changes: 5 additions & 5 deletions release-process.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

To cut a new release of the command trigger plugin, you will need to do the following:

1. Confirm that [CI is green](https://fermyon/spin-trigger-command/actions) for the commit selected to be tagged and released.
1. Confirm that [CI is green](https://github.com/spinframework/spin-trigger-command/actions) for the commit selected to be tagged and released.

1. Change the version number in [Cargo.toml](./Cargo.toml) and [spin-pluginify.toml](./spin-pluginify.toml) and run `cargo build --release`.

Expand All @@ -18,15 +18,15 @@ To cut a new release of the command trigger plugin, you will need to do the foll
# Create a GPG-signed and annotated tag
git tag -s -m "Spin Command Trigger v0.1.0" v0.1.0

# Push the tag to the remote corresponding to fermyon/spin-trigger-command (here 'origin')
# Push the tag to the remote corresponding to spinframework/spin-trigger-command (here 'origin')
git push origin v0.1.0
```

1. Pushing the tag upstream will trigger the [release action](https://github.com/fermyon/spin-trigger-command/actions/workflows/release.yml).
1. Pushing the tag upstream will trigger the [release action](https://github.com/spinframework/spin-trigger-command/actions/workflows/release.yml).
- The release build will create the packaged versions of the plugin, the updated plugin manifest and a checksums file
- These assets are uploaded to a new GitHub release for the pushed tag
- Release notes are auto-generated but edit as needed especially around breaking changes or other notable items

1. Create a PR in the [fermyon/spin-plugins](https://github.com/fermyon/spin-plugins) repository with the [updated manifest](https://github.com/fermyon/spin-plugins/tree/main/manifests/command-trigger).
1. Create a PR in the [spinframework/spin-plugins](https://github.com/spinframework/spin-plugins) repository with the [updated manifest](https://github.com/spinframework/spin-plugins/tree/main/manifests/command-trigger).

1. If applicable, create PR(s) or coordinate [documentation](https://github.com/fermyon/developer) needs, e.g. for new features or updated functionality.
1. If applicable, create PR(s) or coordinate [documentation](https://github.com/spinframework/spin-docs) needs, e.g. for new features or updated functionality.
2 changes: 1 addition & 1 deletion spin-pluginify.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "trigger-command"
description = "A Spin trigger that executes the WASI main function of a component."
version = "0.3.2"
version = "0.4.0"
spin_compatibility = ">=2.0"
license = "Apache-2.0"
package = "./target/release/trigger-command"
Loading