@storm-software/workspace-tools 1.159.1 → 1.160.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,25 @@
1
+ ## 1.160.0 (2024-08-27)
2
+
3
+ ### Features
4
+
5
+ - **workspace-tools:** Added Cargo executors for build, check, doc, clippy, and
6
+ format
7
+ ([52ffcec8](https://github.com/storm-software/storm-ops/commit/52ffcec8))
8
+
9
+ - **workspace-tools:** Added the `profiles` option to Cargo plugin
10
+ ([518620ad](https://github.com/storm-software/storm-ops/commit/518620ad))
11
+
12
+ ### Bug Fixes
13
+
14
+ - **workspace-tools:** Ensure `dev` is used as default profile
15
+ ([f9a49bc5](https://github.com/storm-software/storm-ops/commit/f9a49bc5))
16
+
17
+ - **workspace-tools:** Added the required json properties to executor schema
18
+ ([c99d89f8](https://github.com/storm-software/storm-ops/commit/c99d89f8))
19
+
20
+ - **workspace-tools:** Update the Cargo executors body function signature
21
+ ([e40fd886](https://github.com/storm-software/storm-ops/commit/e40fd886))
22
+
1
23
  ## 1.159.1 (2024-08-26)
2
24
 
3
25
  ### Bug Fixes
package/README.md CHANGED
@@ -534,7 +534,7 @@ The following executor options are available:
534
534
  | **toolchain \*** | "stable" \| "beta" \| "nightly" | The Rust toolchain to use | "stable" |
535
535
  | features | `string` | Features of workspace members may be enabled with package-name/feature-name syntax. Array of names is supported | |
536
536
  | allFeatures | `boolean` | Build all binary targets | |
537
- | target | `string` | | |
537
+ | target | `string` | Build the specified target | |
538
538
  | lib | `boolean` | Build the package's library | |
539
539
  | bin | `string` | Build the specified binary. Array of names or common Unix glob patterns is supported | |
540
540
  | bins | `boolean` | Build all binary targets | |