Skip to content

Commit 47338a2

Browse files
committed
Open Beta v0.18.2 Release
Signed-off-by: Gary Kim <[email protected]>
1 parent ea8e9d4 commit 47338a2

File tree

4 files changed

+35
-9
lines changed

4 files changed

+35
-9
lines changed

CHANGELOG.md

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,33 @@
11
# Changelog
22

3-
## [Open Beta 0.18.1](https://github.com/gary-kim/saspes/tree/v0.18.1)- 2020-02-06
3+
## [Open Beta 0.18.2](https://github.com/gary-kim/saspes/tree/v0.18.2) - 2020-02-29
4+
5+
[Full Changelog](https://github.com/gary-kim/saspes/compare/v0.18.1...v0.18.2)
6+
7+
### Changed
8+
9+
- Update AUTHORS [\#116](https://github.com/gary-kim/saspes/pull/116) ([@insertcustomname](https://github.com/insertcustomname))
10+
- Add @gary-kim for Github Sponsors [\#111](https://github.com/gary-kim/saspes/pull/111) ([@gary-kim](https://github.com/gary-kim))
11+
- Move final percent extract to a function [\#99](https://github.com/gary-kim/saspes/pull/99) ([@gary-kim](https://github.com/gary-kim))
12+
- Make ESLint far more picky [\#90](https://github.com/gary-kim/saspes/pull/90) ([@gary-kim](https://github.com/gary-kim))
13+
14+
### Fixed
15+
16+
- Remove 0.25 weighting [\#115](https://github.com/gary-kim/saspes/pull/115) ([@insertcustomname](https://github.com/insertcustomname))
17+
- Fix options page can't find id error [\#113](https://github.com/gary-kim/saspes/pull/113) ([@gary-kim](https://github.com/gary-kim))
18+
19+
### Dependencies
20+
21+
- build\(deps-dev\): bump web-ext from 4.0.0 to 4.1.0 [\#110](https://github.com/gary-kim/saspes/pull/110) ([@dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
22+
- build\(deps-dev\): bump less from 3.10.3 to 3.11.1 [\#109](https://github.com/gary-kim/saspes/pull/109) ([@dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
23+
- build\(deps-dev\): bump vue-loader from 15.8.3 to 15.9.0 [\#108](https://github.com/gary-kim/saspes/pull/108) ([@dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
24+
- build\(deps-dev\): bump ava from 3.2.0 to 3.3.0 [\#107](https://github.com/gary-kim/saspes/pull/107) ([@dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
25+
- build\(deps-dev\): bump webpack from 4.41.5 to 4.41.6 [\#106](https://github.com/gary-kim/saspes/pull/106) ([@dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
26+
- build\(deps-dev\): bump webpack-cli from 3.3.10 to 3.3.11 [\#105](https://github.com/gary-kim/saspes/pull/105) ([@dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
27+
- build\(deps-dev\): bump chromedriver from 79.0.2 to 80.0.1 [\#104](https://github.com/gary-kim/saspes/pull/104) ([@dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
28+
- build\(deps-dev\): bump ava from 2.4.0 to 3.2.0 [\#98](https://github.com/gary-kim/saspes/pull/98) ([@dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
29+
30+
## [Open Beta 0.18.1](https://github.com/gary-kim/saspes/tree/v0.18.1) - 2020-02-06
431

532
[Full Changelog](https://github.com/gary-kim/saspes/compare/v0.18.0...v0.18.1)
633

CONTRIBUTING.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -91,11 +91,10 @@ For a new file, add this license header to the top of the file:
9191
2. Update the version number with `npm version [major|minor|patch] --no-git` and update the version name manually in [package.json](package.json).
9292
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)
9393
4. Run `npm ci` to install all dependencies for building from [package-lock.json](package-lock.json).
94-
5. Update [CHANGELOG.md](CHANGELOG.md) with the update changelog for the new version.
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`.
96-
7. Run `npm run libraries` to generate third-party library attributions.
97-
8. Run `npm run clean`, `SASPES_OFFICIAL_RELEASE=true npm run webpack:build:firefox`, then `npm run package`. Upload the resulting package to [AMO](https://addons.mozilla.org/en-US/developers/addons) to have the extension signed. Upload the result into GitHub releases then update the update server to point to the new release.
98-
9. Run `npm run clean`, `SASPES_OFFICIAL_RELEASE=true npm run webpack:build:chromium`, then `npm run package`. Upload the resulting package to [CWS](https://chrome.google.com/webstore/developer/dashboard) to have the new version signed and released.
94+
5. 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`.
95+
6. Run `npm run libraries` to generate third-party library attributions.
96+
7. Run `npm run clean`, `SASPES_OFFICIAL_RELEASE=true npm run webpack:build:firefox`, then `npm run package`. Upload the resulting package to [AMO](https://addons.mozilla.org/en-US/developers/addons) to have the extension signed. Upload the result into GitHub releases then update the update server to point to the new release.
97+
8. Run `npm run clean`, `SASPES_OFFICIAL_RELEASE=true npm run webpack:build:chromium`, then `npm run package`. Upload the resulting package to [CWS](https://chrome.google.com/webstore/developer/dashboard) to have the new version signed and released.
9998

10099
### Developer Certificate of Origin
101100
```

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "saspes",
3-
"version": "0.18.1",
4-
"version_name": "Open Beta 0.18.1",
3+
"version": "0.18.2",
4+
"version_name": "Open Beta 0.18.2",
55
"private": true,
66
"description": "SAS Powerschool Enhancement Suite",
77
"main": "index.js",

0 commit comments

Comments
 (0)