From 728898c9c8f2d31dd3a6993bf7c79e9ca598efb3 Mon Sep 17 00:00:00 2001 From: AlexNDRmac Date: Thu, 5 Feb 2026 15:15:39 +0200 Subject: [PATCH 1/2] update changelog --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2173f3e..223c641 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com) and this project adheres to [Semantic Versioning](http://semver.org). ## [Unreleased] - TBD + + +## [1.5.0] - 2025-02-05 ### Added - Event Subscriptions & Webhooks: - Get Callbacks History by ID: webhook callback event history related to subscription ID with advanced filtering and sorting capabilities From 4afb90e9e5bf23193dff44a11fcbca2ac5980ce8 Mon Sep 17 00:00:00 2001 From: AlexNDRmac Date: Thu, 5 Feb 2026 15:24:09 +0200 Subject: [PATCH 2/2] use bash for release action --- .github/workflows/release.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e060218..3db567e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -43,7 +43,6 @@ jobs: - name: Prepare Release Assets id: get-version - shell: bash run: | echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT .github/release-notes.sh CHANGELOG.md > release-notes.txt @@ -66,10 +65,9 @@ jobs: - name: Publish Nuget Package working-directory: ${{ github.workspace }}/SignNow.Net/bin/Publish - shell: pwsh env: NUGET_TOKEN: ${{ secrets.NUGET_TOKEN }} run: | - dotnet nuget push SignNow.Net.${{ steps.get-version.outputs.VERSION }}.nupkg ` - --api-key ${{ env.NUGET_TOKEN }} ` + dotnet nuget push SignNow.Net.${{ steps.get-version.outputs.VERSION }}.nupkg \ + --api-key ${{ env.NUGET_TOKEN }} \ --source https://api.nuget.org/v3/index.json