Skip to content

Commit

Permalink
Merge pull request #63 from jsturtevant/release-0.5.0
Browse files Browse the repository at this point in the history
Bump to version 0.5.0
  • Loading branch information
jsturtevant authored Dec 2, 2024
2 parents 8ac59f2 + c59f0d7 commit b40baa3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<VersionPrefix>0.4.0</VersionPrefix>
<VersionPrefix>0.5.0</VersionPrefix>
<VersionSuffix Condition="'$(BuildNumber)' == ''">dev</VersionSuffix>
<VersionSuffix Condition="'$(BuildNumber)' != ''">preview$([System.String]::Format('{0:00000}', $([MSBuild]::Add($(BuildNumber), 0))))</VersionSuffix>
<PackageVersion>$(VersionPrefix)-$(VersionSuffix)</PackageVersion>
Expand Down
7 changes: 4 additions & 3 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
# Releasing the package

1. Update all the tool versions in [Directory.Build.Props](./Directory.Build.props)
1. Open a PR to update the `<VersionPrefix>` tag in [Directory.Build.Props](./Directory.Build.props)
2. Maintainers approve and merge PR
3. After the PR merges a maintainer triggers the Release workflow on the main branch via the github Actions UI or runs:
1. Maintainers approve and merge PR
1. After the PR merges a maintainer triggers the Release workflow on the main branch via the github Actions UI or runs:

```
gh workflow run build -f test-run=false
```

4. The release flow will build and publish the packages to nuget, tag the repository with version of the release, and create a GH release
>The release flow will build and publish the packages to nuget, tag the repository with version of the release, and create a GH release
5. Maintainer updates release notes with package info:

```
Expand Down

0 comments on commit b40baa3

Please sign in to comment.