From 1cf1854a7b65b1bdff98b17d86d5dcf8ffee8812 Mon Sep 17 00:00:00 2001 From: Gabriele Barcella Date: Mon, 18 Aug 2025 12:41:15 +0200 Subject: [PATCH 1/3] fix: yq download changed --- .github/workflows/release-version.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-version.yaml b/.github/workflows/release-version.yaml index 718e4431..443cf4f9 100644 --- a/.github/workflows/release-version.yaml +++ b/.github/workflows/release-version.yaml @@ -49,9 +49,9 @@ jobs: run: | npm install -g yarn yarn global add standard-version - sudo add-apt-repository ppa:rmescandon/yq -y - sudo apt update - sudo apt install yq -y + wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/local/bin/yq + chmod +x /usr/local/bin/yq + yq --version cd ./scripts/ yarn From 306fcbdcd73fd0094778b4b0b9002e10aeb5c806 Mon Sep 17 00:00:00 2001 From: fattureincloud-bot Date: Mon, 18 Aug 2025 10:42:58 +0000 Subject: [PATCH 2/3] chore(release): 2.1.3 --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d06b78db..591250ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### 2.1.3 (2025-08-18) + + +### Bug Fixes + +* yq download changed ([1cf1854](https://github.com/fattureincloud/fattureincloud-python-sdk/commit/1cf1854a7b65b1bdff98b17d86d5dcf8ffee8812)) + ### 2.1.2 (2024-10-30) ### 2.1.1 (2024-10-24) From 0a0bc5e2eb55f987ab6b95a471bbd4ae57a046b8 Mon Sep 17 00:00:00 2001 From: Gabriele Barcella Date: Mon, 18 Aug 2025 14:36:50 +0200 Subject: [PATCH 3/3] fix: yq change --- .github/workflows/bump-version.yaml | 6 +++--- CHANGELOG.md | 5 ----- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/bump-version.yaml b/.github/workflows/bump-version.yaml index b34aef46..da44ae89 100644 --- a/.github/workflows/bump-version.yaml +++ b/.github/workflows/bump-version.yaml @@ -23,9 +23,9 @@ jobs: - id: setup-libraries name: Install libraries run: | - sudo add-apt-repository ppa:rmescandon/yq -y - sudo apt update - sudo apt install yq -y + wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/local/bin/yq + chmod +x /usr/local/bin/yq + yq --version - id: read-openapi-version name: Read OpenAPI Version diff --git a/CHANGELOG.md b/CHANGELOG.md index 591250ef..258e56b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +4,6 @@ All notable changes to this project will be documented in this file. See [standa ### 2.1.3 (2025-08-18) - -### Bug Fixes - -* yq download changed ([1cf1854](https://github.com/fattureincloud/fattureincloud-python-sdk/commit/1cf1854a7b65b1bdff98b17d86d5dcf8ffee8812)) - ### 2.1.2 (2024-10-30) ### 2.1.1 (2024-10-24)