diff --git a/app/package.json b/app/package.json index b9f2367af9..104602ba17 100644 --- a/app/package.json +++ b/app/package.json @@ -3,7 +3,7 @@ "productName": "GitHub Desktop", "bundleID": "com.github.GitHubClient", "companyName": "GitHub, Inc.", - "version": "3.2.10-beta2", + "version": "3.3.0", "main": "./main.js", "repository": { "type": "git", diff --git a/app/src/lib/feature-flag.ts b/app/src/lib/feature-flag.ts index 6c23b247fe..7255394f9e 100644 --- a/app/src/lib/feature-flag.ts +++ b/app/src/lib/feature-flag.ts @@ -94,7 +94,7 @@ export function enablePullRequestQuickView(): boolean { } export function enableMoveStash(): boolean { - return enableBetaFeatures() + return true } export const enableCustomGitUserAgent = enableBetaFeatures @@ -103,4 +103,4 @@ export function enableSectionList(): boolean { return enableBetaFeatures() } -export const enableRepoRulesBeta = enableBetaFeatures +export const enableRepoRulesBeta = () => true diff --git a/changelog.json b/changelog.json index 4d423e0195..f85883ca84 100644 --- a/changelog.json +++ b/changelog.json @@ -1,5 +1,18 @@ { "releases": { + "3.3.0": [ + "[New] Initial support for repository rules - #16707", + "[Fixed] Recreate stash after renaming branch - #16442", + "[Fixed] Fix loop creating a new repository that already exists, or trying to add a repository that doesn't exist - #17262", + "[Fixed] Allow cloning repositories that have git as a suffix - #17221", + "[Fixed] Fix accessibility semantics of root items of the app menu bar - #17254", + "[Fixed] Double clicking the checkbox of a changed file does not open that file in the external editor - #17229", + "[Fixed] Expand buttons in the diff are keyboard navigable. - #17212", + "[Improved] Improve light mode color contrast of lines added and deleted - #17206", + "[Improved] Dropdown select buttons have aria attributes - #17271", + "[Improved] Dropdown select button menu items are keyboard navigable and have aria attributes - #17271", + "[Improved] Prevent interrupting verbose announcements of branch count on branch dropdown open for screen reader users - #17225" + ], "3.2.10-beta2": [ "[Fixed] Fix loop creating a new repository that already exists, or trying to add a repository that doesn't exist - #17262", "[Fixed] Allow cloning repositories that have git as suffix - #17221",