You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* SAS Powerschool Enhancement Suite - A browser extension to improve the experience of SAS Powerschool.
72
72
*
73
73
* This program is free software: you can redistribute it and/or modify
74
-
* it under the terms of the GNU Affero General Public License as
74
+
* it under the terms of the GNU Affero General Public License as
75
75
* published by the Free Software Foundation, version 3.
76
76
*
77
77
* This program is distributed in the hope that it will be useful,
78
78
* but WITHOUT ANY WARRANTY; without even the implied warranty of
79
79
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
80
-
* GNU General Public License for more details.
80
+
* GNU Affero General Public License for more details.
81
81
*
82
82
* You should have received a copy of the GNU Affero General Public License
83
83
* along with this program. If not, see <https://www.gnu.org/licenses/>.
84
-
*
84
+
*
85
85
*/
86
86
```
87
87
88
88
### Make a new release
89
89
90
90
1. Ensure that all CI tests pass on the latest commit.
91
91
2. Update the version number with `npm version [major|minor|patch] --no-git` and update the version name manually in [package.json](package.json).
92
-
3. Run [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator) with `--since-tag <LAST VERSION> --future-release <NEW VERSION>` and take the resulting generated changelog and adjust it to our changelog style. Add this to the [CHANGELOG.md](CHANGELOG.md) file and make a PR for the new version. Wait until this PR gets merged (unlike other PRs, this PR should be merged with `--ff-only` rather then a merge commit).
92
+
3. Run [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator) with `--since-tag <LAST VERSION> --future-release <NEW VERSION>` and take the resulting generated changelog and adjust it to our changelog style. Add this to the [CHANGELOG.md](CHANGELOG.md) file and make a PR for the new version. Wait until this PR gets merged (unlike other PRs, this PR should be merged with `--ff-only` rather then a merge commit). ([gary-kim/gcg-fork](https://github.com/gary-kim/gcg-fork) has a patch for making the changelog in SASPES's style)
93
93
4. Run `npm ci` to install all dependencies for building from [package-lock.json](package-lock.json).
94
94
5. Update [CHANGELOG.md](CHANGELOG.md) with the update changelog for the new version.
95
95
6. Make a new git commit and tag with `git commit -S`, `git tag VERSION -a`, add the new version name as the annotation, then run `git push origin VERSION`.
0 commit comments