Skip to content

Commit

Permalink
Update RELEASE_NOTES.md (#451)
Browse files Browse the repository at this point in the history
  • Loading branch information
ratsclub committed Apr 20, 2023
1 parent 4fa4de0 commit 230eb22
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
name: Build
on:
push: {}
pull_request: {}
schedule:
- cron: 0 15 * * *
push:
pull_request:

env:
DOTNET_CLI_TELEMETRY_OPTOUT: "1"
Expand Down
20 changes: 20 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Release

on:
push:
tags:
- "*"

jobs:
release:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Setup .Net
uses: actions/setup-dotnet@v3
with:
global-json-file: "./global.json"
- run: ./fake build --target Push
env:
NUGET_TOKEN: ${{secrets.NUGET_RELEASE_KEY}}
6 changes: 6 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
#### 10.0.0 - 2023-04-20
* Make Expect.isNotEmpty accept whitespace strings #452
* Removed deprecated code #449
* Bumped minimum framework to .NET 6 #447
* Add testFixtureAsync and testFixtureTask #444

#### 9.0.3 - 2021-08-17
* Thanks @lydell for improving Expecto.Diff

Expand Down

0 comments on commit 230eb22

Please sign in to comment.