Skip to content

Commit

Permalink
Release 6.1.2 (fsprojects#192)
Browse files Browse the repository at this point in the history
* Add 6.1.2 to release notes.

* Add dependabot yml

* Add release job.

* Add NuGet key

* Add permissions

* Add 116 entry.
  • Loading branch information
nojaf authored Dec 12, 2023
1 parent d421c7d commit c1bcbf5
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
version: 2
updates:

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"

- package-ecosystem: "nuget"
directory: "/"
schedule:
interval: "daily"
29 changes: 29 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Release

env:
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true

on:
workflow_dispatch:

permissions:
contents: write
pages: write
id-token: write

jobs:
Release:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
- name: Build
run: ./build.sh -t Release
shell: bash
env:
NUGET_KEY: ${{ secrets.NUGET_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4 changes: 4 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 6.1.2
* Fix Mandatory arguments in nested subcommands. [#116](https://github.com/fsprojects/Argu/issues/116)
* Fix Consistent handling of numeric decimal separators using invariant culture. [#159](https://github.com/fsprojects/Argu/issues/159)

### 6.1.1
* Fix CustomAssignmentOrSpacedAttribute interop with optional fields.

Expand Down

0 comments on commit c1bcbf5

Please sign in to comment.