Skip to content

Commit 6c7f42d

Browse files
authored
Merge branch 'propeller-heads:main' into liqp
2 parents 6b2d3e9 + a7e6f0d commit 6c7f42d

5 files changed

Lines changed: 1283 additions & 876 deletions

File tree

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# ---------------------------------------------------------------------------
2+
# Template: copy this file into .github/workflows/ of any Tycho crate repo
3+
# and fill in the two placeholder values marked with <EDIT>.
4+
#
5+
# This workflow fires after a GitHub Release is published, then dispatches
6+
# the compatibility-check workflow in propeller-heads/tycho so the meta-crate
7+
# is kept in sync automatically.
8+
#
9+
# Uses the built-in GITHUB_TOKEN secret — no additional configuration required.
10+
# ---------------------------------------------------------------------------
11+
12+
name: Notify Tycho Compat
13+
14+
on:
15+
release:
16+
types: [published]
17+
18+
permissions:
19+
contents: read
20+
21+
jobs:
22+
dispatch:
23+
name: Trigger compatibility check
24+
runs-on: ubuntu-latest
25+
steps:
26+
- name: Dispatch compatibility-check workflow
27+
env:
28+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
29+
run: |
30+
gh workflow run compatibility-check.yaml \
31+
--repo propeller-heads/tycho \
32+
--field crate=tycho-execution \
33+
--field version="${{ github.event.release.tag_name }}" \
34+
--field release_url="${{ github.event.release.html_url }}"

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [0.165.1](https://github.com/propeller-heads/tycho-execution/compare/0.165.0...0.165.1) (2026-03-11)
2+
3+
4+
### Bug Fixes
5+
6+
* Fix cargo audit ([bce8e56](https://github.com/propeller-heads/tycho-execution/commit/bce8e5644a25fce2496eab088783f47e51ce9021))
7+
18
## [0.165.0](https://github.com/propeller-heads/tycho-execution/compare/0.164.0...0.165.0) (2026-03-04)
29

310

0 commit comments

Comments
 (0)