From 3aff55c76cce8596b6def5773a6a3ffbccae5599 Mon Sep 17 00:00:00 2001 From: ThetaDev Date: Thu, 27 Jun 2024 13:44:37 +0200 Subject: [PATCH 1/2] ci: fix release changelog extraction --- .forgejo/workflows/release.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/release.yaml b/.forgejo/workflows/release.yaml index 042e1e9..e53c7c0 100644 --- a/.forgejo/workflows/release.yaml +++ b/.forgejo/workflows/release.yaml @@ -10,16 +10,17 @@ jobs: steps: - name: 📦 Checkout repository uses: actions/checkout@v4 - with: - fetch-depth: 0 - name: Get variables run: | - echo "CRATE=$(echo '${{ github.ref_name }}' | awk 'BEGIN{RS="/"} NR==1{print}')" >> "$GITHUB_ENV" + CRATE=$(echo '${{ github.ref_name }}' | awk 'BEGIN{RS="/"} NR==1{print}') + echo "CRATE=$CRATE" >> "$GITHUB_ENV" echo "CRATE_VERSION=$(echo '${{ github.ref_name }}' | awk 'BEGIN{RS="/"} NR==2{print}')" >> "$GITHUB_ENV" + CL_PATH="CHANGELOG.md" + if [[ "$CRATE" != "rustypipe" ]]; then pfx="rustypipe-"; CL_PATH="${CRATE#"$pfx"}/$CL_PATH"; fi { echo 'CHANGELOG<> "$GITHUB_ENV" From 4f06b51138563716ce283fb1d7eebab9b6b00c25 Mon Sep 17 00:00:00 2001 From: ThetaDev Date: Thu, 27 Jun 2024 14:00:55 +0200 Subject: [PATCH 2/2] chore(release): release rustypipe-downloader v0.1.1 --- downloader/CHANGELOG.md | 18 ++++++++++++++++++ downloader/Cargo.toml | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/downloader/CHANGELOG.md b/downloader/CHANGELOG.md index f5ac11c..9912915 100644 --- a/downloader/CHANGELOG.md +++ b/downloader/CHANGELOG.md @@ -2,6 +2,24 @@ All notable changes to this project will be documented in this file. + +## [v0.1.1](https://code.thetadev.de/ThetaDev/rustypipe/compare/rustypipe-downloader/v0.1.0..rustypipe-downloader/v0.1.1) - 2024-06-27 + +### 📚 Documentation + +- Add logo - ([6646078](https://code.thetadev.de/ThetaDev/rustypipe/commit/66460789449be0d5984cbdb6ec372e69323b7a88)) + +### ⚙️ Miscellaneous Tasks + +- Changelog: fix incorrect version URLs - ([97b6f07](https://code.thetadev.de/ThetaDev/rustypipe/commit/97b6f07399e80e00a6c015d013e744568be125dd)) +- Update rstest to v0.19.0 - ([50fd1f0](https://code.thetadev.de/ThetaDev/rustypipe/commit/50fd1f08caf39c1298654e06059cc393543e925b)) +- Introduce MSRV - ([5dbb288](https://code.thetadev.de/ThetaDev/rustypipe/commit/5dbb288a496d53a299effa2026f5258af7b1f176)) +- Fix clippy lints - ([45b9f2a](https://code.thetadev.de/ThetaDev/rustypipe/commit/45b9f2a627b4e7075ba0b1c5f16efcc19aef7922)) +- *(deps)* Update rust crate tokio to 1.20.4 [security] (#4) - ([ce3ec34](https://code.thetadev.de/ThetaDev/rustypipe/commit/ce3ec34337b8acac41410ea39264aab7423d5801)) +- *(deps)* Update rust crate quick-xml to 0.34.0 (#5) - ([1e8a1af](https://code.thetadev.de/ThetaDev/rustypipe/commit/1e8a1af08c873cee7feadf63c2eff62753a78f64)) +- *(deps)* Update rust crate rstest to 0.21.0 (#7) - ([c3af918](https://code.thetadev.de/ThetaDev/rustypipe/commit/c3af918ba53c6230c0e4aef822a0cb2cf120bf3f)) +- Update rustypipe to 0.2.0 + ## [v0.1.0](https://code.thetadev.de/ThetaDev/rustypipe/commits/tag/rustypipe-downloader/v0.1.0) - 2024-03-22 Initial release diff --git a/downloader/Cargo.toml b/downloader/Cargo.toml index 7f0190d..c48fbe8 100644 --- a/downloader/Cargo.toml +++ b/downloader/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustypipe-downloader" -version = "0.1.0" +version = "0.1.1" rust-version = "1.67.1" edition.workspace = true authors.workspace = true