Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down