Skip to content

Commit 9505c8f

Browse files
author
GitHub Action
committed
add new NEWS.md and autobump version
1 parent 1a09b83 commit 9505c8f

3 files changed

Lines changed: 67 additions & 0 deletions

File tree

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Auto-bump Version on Merge
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
call-bump-workflow:
10+
uses: jasp-stats/jasp-actions/.github/workflows/auto-bump-version.yml@v1
11+
secrets:
12+
BUMP_TOKEN: ${{ secrets.BUMP_TOKEN }}
13+
permissions:
14+
contents: write
15+

.github/workflows/remind-news.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Remind NEWS.md Update
2+
3+
on:
4+
pull_request:
5+
types: [opened] # Only run once when the PR is first created
6+
7+
jobs:
8+
call-remind-news-workflow:
9+
uses: jasp-stats/jasp-actions/.github/workflows/remind-news.yml@v1
10+
permissions:
11+
pull-requests: write

NEWS.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# jaspFrequencies Changelog
2+
3+
> **HOW TO READ AND UPDATE THIS CHANGELOG:**
4+
>
5+
> 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).
6+
> As an example see [jaspModuleTemplate](https://github.com/jasp-stats/jaspModuleTemplate/blob/master/NEWS.md)
7+
> * **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.).
8+
> * **Issue References:** Please reference the relevant GitHub Issue (if any) at the end of your line (e.g., `([Issue #19](https://github.com/jasp-stats/jaspModuleTemplate/issues/19)`).
9+
> * **Format Categories:** > * **Added:** New template features, QML examples, or build tools.
10+
> * **Changed:** Updates to default configurations, boilerplate code, or dependencies.
11+
> * **Fixed:** Bug fixes in the build pipeline, R wrappers, or QML layouts.
12+
> * **Deprecated / Removed:** Outdated template components or legacy code.
13+
14+
15+
---
16+
17+
# jaspFrequencies (development version)
18+
19+
20+
21+
---
22+
23+
# jaspModuleTemplate 0.2.0
24+
## Added
25+
* Added NEWS.md
26+
* Added workflow to remind users to update their `NEWS.md`.
27+
* Added workflow to auto-bump version when user does not do so.
28+
29+
---
30+
31+
# jaspModuleTemplate 0.1.0
32+
33+
## Added
34+
* Initial examples to showcase JASP module development
35+
36+
## Changed
37+
* Use best practices for checking input ([Issue #19](https://github.com/jasp-stats/jaspModuleTemplate/issues/19)).
38+
* The main results table now defaults to displaying 95% Confidence Intervals for effect sizes.
39+
40+
## Fixed
41+
* Remove deprecated dependencies from qml files ([Issue #14](https://github.com/jasp-stats/jaspModuleTemplate/issues/14)).

0 commit comments

Comments
 (0)