Add NEWS.md and news reminder workflow#25
Open
RensDofferhoff wants to merge 6 commits intojasp-stats:masterfrom
Open
Add NEWS.md and news reminder workflow#25RensDofferhoff wants to merge 6 commits intojasp-stats:masterfrom
RensDofferhoff wants to merge 6 commits intojasp-stats:masterfrom
Conversation
FBartos
approved these changes
Mar 2, 2026
* Create auto-bump-version.yml * Update DESCRIPTION * Update auto-bump-version.yml * chore: auto-bump version to 0.1.1 * Update auto-bump-version.yml * Update DESCRIPTION --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
vandenman
reviewed
Mar 3, 2026
Comment on lines
+21
to
+22
| - name: Calculate and Update Version | ||
| run: | |
Contributor
There was a problem hiding this comment.
If a PR already update the version, this would do it twice, no?
Comment on lines
+34
to
+39
| # Use the GitHub CLI to post a comment directly to the PR | ||
| gh pr comment ${{ github.event.pull_request.number }} --body "👋 **Friendly reminder:** It looks like \`NEWS.md\` wasn't updated in this Pull Request. | ||
|
|
||
| If your changes include bug fixes, new features, or UI tweaks, please consider adding a quick note to the \`# jaspYourModule (development version)\` section so our users know about your awesome work! *(If this is just a minor typo fix, feel free to ignore this message.)*" | ||
|
|
||
| # We exit with 0 (success) so the check turns green and does NOT block the PR |
Contributor
There was a problem hiding this comment.
is this a better approach than actions/github-script?
Comment on lines
+16
to
+41
| # jaspModuleTemplate (development version) | ||
|
|
||
| ## Added | ||
| * Added a "Raincloud Plot" option to visualize data distributions alongside summary statistics (Issue #45). | ||
| * Added Welch's t-test option | ||
|
|
||
| ## Changed | ||
| * Reorganized the "Assumption Checks" menu to group homogeneity and normality tests together for better usability (Issue #51). | ||
|
|
||
| ## Fixed | ||
| * Fixed a fatal error where the analysis would crash if a user assigned a variable containing entirely missing values (`NA`) to the grouping factor (Issue #53). | ||
|
|
||
| --- | ||
|
|
||
| # jaspModuleTemplate 0.17.0 | ||
|
|
||
| ## Added | ||
| * Included support for robust standard errors (HC3 estimators) via the `sandwich` package (Issue #39). | ||
| * Added full interface translations for German and French (Issue #38). | ||
|
|
||
| ## Changed | ||
| * The default color palette for all plots has been updated to be colorblind-friendly (Issue #43). | ||
| * The main results table now defaults to displaying 95% Confidence Intervals for effect sizes. | ||
|
|
||
| ## Deprecated | ||
| * The legacy `jaspCreateLegacyPlot()` function used for backwards compatibility with older state files is marked for removal. Module developers should migrate to the modern plotting API (Issue #30).custom QML components (Issue #30). |
Contributor
There was a problem hiding this comment.
Shouldn't this contain the actual updates jaspModuleTemplate? :p
shun2wang
reviewed
Mar 3, 2026
| > | ||
| > This document follows a modified [Keep a Changelog](https://keepachangelog.com/) format adapted for the R/JASP ecosystem. Releases are listed in reverse chronological order (newest first). | ||
| > As an example see [jaspModuleTemplate](https://github.com/RensDofferhoff/jaspModuleTemplate/blob/master/NEWS.md) | ||
| > * **Adding New Changes (For Contributors):** All new commits should be logged at the very top of the file under the `# jaspModuleTemplate (development version)` header. Place your bullet point under the appropriate category (`## Added`, `## Fixed`, etc.). |
Contributor
There was a problem hiding this comment.
how about we use : feat., fix., enh., test.,. chore...in NEWS.md. in this way we can pick out the major user-visible change in main JASP's release news.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I think this should do.
It doesn't force one to update the news file but nicely suggests it instead.
See: RensDofferhoff#1 for example