Skip to content

Commit 230eb22

Browse files
committed
Update RELEASE_NOTES.md (#451)
1 parent 4fa4de0 commit 230eb22

File tree

3 files changed

+28
-4
lines changed

3 files changed

+28
-4
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
name: Build
22
on:
3-
push: {}
4-
pull_request: {}
5-
schedule:
6-
- cron: 0 15 * * *
3+
push:
4+
pull_request:
75

86
env:
97
DOTNET_CLI_TELEMETRY_OPTOUT: "1"

.github/workflows/release.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
tags:
6+
- "*"
7+
8+
jobs:
9+
release:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/checkout@v3
14+
- name: Setup .Net
15+
uses: actions/setup-dotnet@v3
16+
with:
17+
global-json-file: "./global.json"
18+
- run: ./fake build --target Push
19+
env:
20+
NUGET_TOKEN: ${{secrets.NUGET_RELEASE_KEY}}

RELEASE_NOTES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
#### 10.0.0 - 2023-04-20
2+
* Make Expect.isNotEmpty accept whitespace strings #452
3+
* Removed deprecated code #449
4+
* Bumped minimum framework to .NET 6 #447
5+
* Add testFixtureAsync and testFixtureTask #444
6+
17
#### 9.0.3 - 2021-08-17
28
* Thanks @lydell for improving Expecto.Diff
39

0 commit comments

Comments
 (0)