File tree 1 file changed +10
-2
lines changed
1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -88,15 +88,23 @@ public sealed class AppDbContext : DbContext
88
88
}
89
89
```
90
90
91
+ ## Creating a release (for maintainers)
92
+
93
+ - Verify documentation is up-to-date
94
+ - Bump the package version in Directory.Build.props
95
+ - Create a GitHub release
96
+ - Update https://github.com/json-api-dotnet/JsonApiDotNetCore.MongoDb to consume the new version and release
97
+ - Create a new branch in https://github.com/json-api-dotnet/MigrationGuide and update README.md in master
98
+
91
99
## Backporting and hotfixes (for maintainers)
92
100
93
101
- Checkout the version you want to apply the feature on top of and create a new branch to release the new version:
94
102
```
95
103
git checkout tags/v2.5.1 -b release/2.5.2
96
104
```
97
105
- Cherrypick the merge commit: ` git cherry-pick {git commit SHA} `
98
- - Bump the package version in the csproj
99
- - Make any other compatibility, documentation or tooling related changes
106
+ - Bump the package version in Directory.Build.props
107
+ - Make any other compatibility, documentation, or tooling related changes
100
108
- Push the branch to origin and verify the build
101
109
- Once the build is verified, create a GitHub release, tagging the release branch
102
110
- Open a PR back to master with any other additions
You can’t perform that action at this time.
0 commit comments