Skip to content

Commit

Permalink
Merge branch 'stable'
Browse files Browse the repository at this point in the history
  • Loading branch information
bUnitBot committed Feb 22, 2022
2 parents 98bc9ef + e10188c commit c36d5c9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ jobs:
dotnet pack src/bunit.template/ -c Release -o ${GITHUB_WORKSPACE}/packages -p:ContinuousIntegrationBuild=true
- name: 🛠️ Upload library to NuGet.org repository
run: dotnet nuget push ${GITHUB_WORKSPACE}/packages/*.nupkg -k ${{ secrets.NUGET_KEY }} -s https://api.nuget.org/v3/index.json --skip-duplicate --no-symbols true
run: |
dotnet nuget push ${GITHUB_WORKSPACE}/packages/*.nupkg -k ${{ secrets.NUGET_KEY }} -s https://api.nuget.org/v3/index.json --skip-duplicate --no-symbols
- name: ⏩ Push stable branch
run: git push origin stable
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ All notable changes to **bUnit** will be documented in this file. The project ad

## [Unreleased]

## [1.6.4] - 2022-02-22

A quick minor release that primiarily fixes a regression in 1.5.12.

### Fixed
Expand Down Expand Up @@ -1122,7 +1124,9 @@ The latest version of the library is availble on NuGet:
- **Wrong casing on keyboard event dispatch helpers.**
The helper methods for the keyboard events was not probably cased, so that has been updated. E.g. from `Keypress(...)` to `KeyPress(...)`.

[Unreleased]: https://github.com/bUnit-dev/bUnit/compare/v1.5.12...HEAD
[Unreleased]: https://github.com/bUnit-dev/bUnit/compare/v1.6.4...HEAD
[1.6.4]: https://github.com/bUnit-dev/bUnit/compare/v1.5.12...v1.6.4
[1.5.12]: https://github.com/bUnit-dev/bUnit/compare/v1.4.15...v1.5.12
Expand Down

0 comments on commit c36d5c9

Please sign in to comment.