Skip to content

Commit b082deb

Browse files
chore(deps): update dependency knope to v0.14.0 (#954)
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [knope](https://knope.tech) ([source](https://togithub.com/knope-dev/knope)) | minor | `0.13.4` -> `0.14.0` | --- ### Release Notes <details> <summary>knope-dev/knope (knope)</summary> ### [`v0.14.0`](https://togithub.com/knope-dev/knope/blob/HEAD/CHANGELOG.md#0140-2024-02-04) [Compare Source](https://togithub.com/knope-dev/knope/compare/v0.13.4...v0.14.0) ##### Breaking Changes ##### `Cargo.toml` files must now have a `package.name` property This was already required by Cargo, but wasn't enforced by Knope until now. Before, a `Cargo.toml` file like ```toml [package] version = "0.1.0" ``` was acceptable, but now it must be ```toml [package] name = "my-package" version = "0.1.0" ``` ##### Features ##### Add basic Cargo workspace support If you have a `Cargo.toml` file in the working directory which represents a Cargo workspace containing fixed members, like: ```toml [workspace] members = [ "my-package", "my-other-package", ] ``` then Knope will now treat each member like a package. There must be a `Cargo.toml` file in each member directory, or Knope will error. This doesn't work with path globbing yet, only manual directory entries. See [the new docs](https://knope.tech/reference/default-config/#cargo-workspaces) for more details. ##### Use default packages/workflows even when `knope.toml` exists If you define a `knope.toml` file without any packages, Knope will assume the default packages (as if you had no `knope.toml` file at all). Likewise, if you have no `[[workflows]]` in a `knope.toml` file, Knope will assume the default workflows. ##### Fixes ##### Homebrew tap now contains Apple Silicon binaries and auto-publishes new versions ([#&#8203;827](https://togithub.com/knope-dev/knope/issues/827)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/openapi-generators/openapi-python-client). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNTMuMiIsInVwZGF0ZWRJblZlciI6IjM3LjE1My4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 908257a commit b082deb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/preview_release_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
git config user.email github-actions@github.com
1818
- uses: knope-dev/action@v2.0.0
1919
with:
20-
version: 0.13.4
20+
version: 0.14.0
2121
- run: knope prepare-release --verbose
2222
env:
2323
GITHUB_TOKEN: ${{ secrets.PAT }}

.github/workflows/release-dry-run.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ jobs:
1313
- name: Install Knope
1414
uses: knope-dev/action@v2.0.0
1515
with:
16-
version: 0.13.4
16+
version: 0.14.0
1717
- run: knope prepare-release --dry-run

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Install Knope
2020
uses: knope-dev/action@v2.0.0
2121
with:
22-
version: 0.13.4
22+
version: 0.14.0
2323
- name: Install Hatchling
2424
run: pip install --upgrade hatchling
2525
- name: Build

0 commit comments

Comments
 (0)