Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: prepare v5.13.0 release #1476

Merged
merged 4 commits into from
Aug 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ body:
label: Gitify Version
description: What version of Gitify are you using?
options:
- 5.13.0
- 5.12.1
- 5.12.0
- 5.11.0
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
branches:
- main
- 'release/v**'
afonsojramos marked this conversation as resolved.
Show resolved Hide resolved
pull_request:
branches:
- main
Expand Down
16 changes: 9 additions & 7 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,16 +57,18 @@ The release process is automated. Follow the steps below.
1. Verify that all features you want targeted in the release have been merged to `main`.
2. Check the [Renovate Dependency Dashboard][github-dependency-dashboard] to see if there are any updates you want included.
3. Create a [new **draft** release][github-new-release]. Set the tag version to something with the format of `v1.2.3`. Save as a **draft** before moving to the next step
4. Create a branch that starts with `release/vX.X.X` (ie. `release/v1.2.3`).
5. In the same branch, **bump the version** of the app by running `pnpm version <new-version-number`. Commit these changes and open a PR. A GitHub Actions workflow will build, sign and upload the release assets for each commit to that branch as long as a branch is named like `release/vX.X.X` and there is a draft release with the same version number(`package.json`).
6. Merge your release branch into `main`.
7. Publish the release once you've finalized the release notes and confirmed all assets are there.
8. Edit current [Milestone][github-milestones] to have:
4. Create a branch that starts with `release/vX.X.X` (ie. `release/v1.2.3`). In this branch you need to:
* Run `pnpm version <new-version-number` to **bump the version** of the app .
* Update `./github/ISSUE_TEMPLATE/bug_report.yml` to have the new app version.
* Commit these changes and open a PR. A GitHub Actions workflow will build, sign and upload the release assets for each commit to that branch as long as a branch is named like `release/vX.X.X` and there is a draft release with the same version number(`package.json`).
5. Merge your release branch into `main`.
6. Publish the release once you've finalized the release notes and confirmed all assets are there.
7. Edit current [Milestone][github-milestones] to have:
* description: link to the release notes
* due date: date of release
* close milestone
9. Create a [New Milestone][github-new-milestone] for upcoming release.
10. A new homebrew cask will be [automatically published][homebrew-cask-autobump-workflow] (workflow runs ~3 hours)
8. Create a [New Milestone][github-new-milestone] for upcoming release.
9. A new homebrew cask will be [automatically published][homebrew-cask-autobump-workflow] (workflow runs ~3 hours)

### Project Philosophy

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gitify",
"version": "5.12.1",
"version": "5.13.0",
"description": "GitHub Notifications on your menu bar.",
"main": "src/electron/main.js",
"scripts": {
Expand Down Expand Up @@ -93,7 +93,7 @@
"oneClick": false
},
"linux": {
"target": ["AppImage", "deb", "rpm", "snap"],
"target": ["AppImage", "deb", "rpm"],
"category": "Development",
"maintainer": "Emmanouil Konstantinidis"
},
Expand Down