Skip to content

Commit

Permalink
Push a minor fix on Aug 2023
Browse files Browse the repository at this point in the history
  • Loading branch information
mikewlcheung committed Dec 4, 2023
1 parent c5daae1 commit a4bc650
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: metaSEM
Type: Package
Title: Meta-Analysis using Structural Equation Modeling
Version: 1.3.0
Date: 2023-01-07
Version: 1.3.1
Date: 2023-08-08
Depends: R (>= 3.4.0), OpenMx
Imports: Matrix, MASS, ellipse, graphics, stats, utils, mvtnorm, numDeriv, lavaan
Suggests: metafor, semPlot, R.rsp, testthat, matrixcalc
Expand Down
6 changes: 5 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
Release 1.3.0 (Jan 7, 2022)
Release 1.3.1 (Aug 8, 2023)
====================================
* Lower the tolerance in testing asyCov(), which returns an error in latest R.

Release 1.3.0 (Jan 7, 2023)
====================================
* Fix a bug reported by Noel Card that meta() reported incorrect number of statistics and dfs.
* Rewrite asyCov() and rename the old one to asyCovOld().
Expand Down
4 changes: 2 additions & 2 deletions inst/CITATION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
citHeader("To cite the 'metaSEM' package in publications use:")

citEntry(entry="Article",
bibentry(bibtype="Article",
title = "{metaSEM}: An R Package for Meta-Analysis using Structural Equation Modeling",
author = personList(as.person("Mike W.-L. Cheung")),
author = as.person("Mike W.-L. Cheung"),
journal = "Frontiers in Psychology",
year = "2015",
volume = "5",
Expand Down
4 changes: 2 additions & 2 deletions man/metaSEM-package.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
\tabular{ll}{
Package: \tab metaSEM\cr
Type: \tab Package\cr
Version: \tab 1.3.0\cr
Date: \tab 2023-01-07\cr
Version: \tab 1.3.1\cr
Date: \tab 2023-08-08\cr
License: \tab GPL (>=2)\cr
LazyLoad: \tab yes\cr
}
Expand Down
3 changes: 2 additions & 1 deletion tests/testthat/test_utilities.R
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,8 @@ test_that("Testing new asyCov() correctly", {

set.seed(123456)

tolerance <- 1e-4
## Lower tolerance
tolerance <- 1e-3

new <- asyCov(x=Becker92$data, n=Becker92$n, acov="individual")
row.names(new) <- NULL
Expand Down

0 comments on commit a4bc650

Please sign in to comment.