Skip to content
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
13 changes: 13 additions & 0 deletions .github/workflows/auto-bump-version.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Auto-bump Version on Merge

on:
push:
branches:
- master

jobs:
call-bump-workflow:
# This points to the file you just created!
uses: jasp-stats/jasp-actions/.github/workflows/auto-bump-version.yml@v1
permissions:
contents: write
11 changes: 11 additions & 0 deletions .github/workflows/remind-news.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Remind NEWS.md Update

on:
pull_request:
types: [opened] # Only run once when the PR is first created

jobs:
call-remind-news-workflow:
uses: jasp-stats/jasp-actions/.github/workflows/remind-news.yml@v1
permissions:
pull-requests: write
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: jaspModuleTemplate
Type: Package
Type: Package
Title: A module for JASP
Version: 0.1.0
Version: 0.1.1
Date: 2020-10-15
Author: JASP Team
Website: jasp-stats.org
Expand Down
35 changes: 35 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# jaspModuleTemplate Changelog

> **HOW TO READ AND UPDATE THIS CHANGELOG:**
>
> 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.).
Comment thread
RensDofferhoff marked this conversation as resolved.
> * **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)`).
> * **Format Categories:** > * **Added:** New template features, QML examples, or build tools.
> * **Changed:** Updates to default configurations, boilerplate code, or dependencies.
> * **Fixed:** Bug fixes in the build pipeline, R wrappers, or QML layouts.
> * **Deprecated / Removed:** Outdated template components or legacy code.

---

# jaspModuleTemplate (development version)

## Added
* Added NEWS.md
* Added workflow to remind users to update their `NEWS.md`.
* Added workflow to auto-bump version when user does not do so.

---

# jaspModuleTemplate 0.1.0

## Added
* Initial examples to showcase JASP module development

## Changed
* Use best practices for checking input ([Issue #19](https://github.com/jasp-stats/jaspModuleTemplate/issues/19)).
* The main results table now defaults to displaying 95% Confidence Intervals for effect sizes.

## Fixed
* Remove deprecated dependencies from qml files ([Issue #14](https://github.com/jasp-stats/jaspModuleTemplate/issues/14)).
Loading