Release 3.0.0 🎉

This commit is contained in:
tidy-dev 2022-04-25 16:30:51 -04:00
parent 05e1021045
commit d8f5174f0b
3 changed files with 8 additions and 3 deletions

View file

@ -3,7 +3,7 @@
"productName": "GitHub Desktop",
"bundleID": "com.github.GitHubClient",
"companyName": "GitHub, Inc.",
"version": "2.9.16-beta2",
"version": "3.0.0",
"main": "./main.js",
"repository": {
"type": "git",

View file

@ -165,10 +165,10 @@ export function enableHighSignalNotifications(): boolean {
/** Should we enable PR review notifications? */
export function enablePullRequestReviewNotifications(): boolean {
return enableBetaFeatures()
return true
}
/** Should we enable the rerunning of failed and single jobs aka action based checks */
export function enableReRunFailedAndSingleCheckJobs(): boolean {
return enableBetaFeatures()
return true
}

View file

@ -1,5 +1,10 @@
{
"releases": {
"3.0.0": [
"[New] Add support for notifications of pull request reviews - #14175",
"[Fixed] Use fast-forward flag as default for pulling divergent paths - #14431",
"[Improved] Add ability to re-run individual and failed GitHub Action checks - #14310"
],
"2.9.16-beta2": [
"[Fixed] Use fast-forward flag as default for pulling divergent paths - #14431"
],