Skip to content

Commit 16f0525

Browse files
committed
Bumped version to beta-10, reset changelog and fixed release deploy of nuget
1 parent ddd8a4b commit 16f0525

File tree

3 files changed

+26
-4
lines changed

3 files changed

+26
-4
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -316,9 +316,9 @@ jobs:
316316
- name: Creating library package for release
317317
if: github.event_name == 'release'
318318
run: |
319-
dotnet pack -c Release -o ${GITHUB_WORKSPACE}/packages -p:RepositoryBranch=$BRANCH -p:ContinuousIntegrationBuild=true /p:PublicRelease=true
320-
dotnet pack src/bunit/ -c Release -o ${GITHUB_WORKSPACE}/packages -p:RepositoryBranch=$BRANCH -p:ContinuousIntegrationBuild=true /p:PublicRelease=true
321-
dotnet pack src/bunit.template/ -c Release -o ${GITHUB_WORKSPACE}/packages -p:RepositoryBranch=$BRANCH -p:ContinuousIntegrationBuild=true /p:PublicRelease=true
319+
dotnet pack -c Release -o ${GITHUB_WORKSPACE}/packages -p:RepositoryBranch=main -p:ContinuousIntegrationBuild=true /p:PublicRelease=true
320+
dotnet pack src/bunit/ -c Release -o ${GITHUB_WORKSPACE}/packages -p:RepositoryBranch=main -p:ContinuousIntegrationBuild=true /p:PublicRelease=true
321+
dotnet pack src/bunit.template/ -c Release -o ${GITHUB_WORKSPACE}/packages -p:RepositoryBranch=main -p:ContinuousIntegrationBuild=true /p:PublicRelease=true
322322
323323
- name: Push packages to GitHub Package Registry
324324
run: |

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,28 @@
22

33
All notable changes to **bUnit** will be documented in this file. The project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
44

5+
## [Unreleased beta 10]
6+
7+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
8+
9+
### Added
10+
List of new features.
11+
12+
### Changed
13+
List of changes in existing functionality.
14+
15+
### Deprecated
16+
List of soon-to-be removed features.
17+
18+
### Removed
19+
List of now removed features.
20+
21+
### Fixed
22+
List of any bug fixes.
23+
24+
### Security
25+
List of fixed security vulnerabilities.
26+
527
## [1.0.0-beta-9] - 2020-08-26
628

729
This release contains a couple of fixes, and adds support for .NET Preview 8 and later. There are no breaking changes in this release.

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
3-
"version": "1.0.0-beta-9",
3+
"version": "1.0.0-beta-10",
44
"publicReleaseRefSpec": [
55
"^refs/heads/main$",
66
"^refs/heads/v\\d+(?:\\.\\d+)?$"

0 commit comments

Comments
 (0)