Skip to content

Commit

Permalink
Draft bugfix release
Browse files Browse the repository at this point in the history
  • Loading branch information
chjackson committed Oct 4, 2024
1 parent e5316fd commit ac321fd
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 4 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/recheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
on:
workflow_dispatch:
inputs:
which:
type: choice
description: Which dependents to check
options:
- strong
- most

name: Reverse dependency check

jobs:
revdep_check:
name: Reverse check ${{ inputs.which }} dependents
uses: r-devel/recheck/.github/workflows/recheck.yml@v1
with:
which: ${{ inputs.which }}
subdirectory: '' #if your package is in a git subdir

4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: msm
Version: 1.8
Date: 2024-09-06
Version: 1.8.1
Date: 2024-10-04
Title: Multi-State Markov and Hidden Markov Models in Continuous Time
Authors@R: c(person("Christopher", "Jackson",
email="[email protected]",
Expand Down
9 changes: 7 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
User-visible changes only. For internal changes, see Github commits.

# Version 1.8.1 (2024-10-04)

* Fix memory error that crashed reverse dependency checks (#106).


# Version 1.8 (2024-09-06)

* Subject-level weights supported for likelihood calculation with new `msm()` argument `subject.weights`.
Expand All @@ -16,9 +21,9 @@ User-visible changes only. For internal changes, see Github commits.

* New function `hmodel2list` to extract HMM constructor function calls from fitted HMMs. Thanks to Will Hulme for working on this.

* Objects returned by `totlos.msm`, `efpt.msm` and `envisits.msm` now have class `"msm.estbystate"`
* Objects returned by `totlos.msm`, `efpt.msm` and `envisits.msm` now have class `"msm.estbystate"`.

* Objects returned by `prevalence.msm` now have class `"msm.prevalence"`
* Objects returned by `prevalence.msm` now have class `"msm.prevalence"`.

* Fix of bugs for models containing a covariate named `"baseline"` or `"Baseline"`.

Expand Down

0 comments on commit ac321fd

Please sign in to comment.