Skip to content

Commit a4bc650

Browse files
committed
Push a minor fix on Aug 2023
1 parent c5daae1 commit a4bc650

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Package: metaSEM
22
Type: Package
33
Title: Meta-Analysis using Structural Equation Modeling
4-
Version: 1.3.0
5-
Date: 2023-01-07
4+
Version: 1.3.1
5+
Date: 2023-08-08
66
Depends: R (>= 3.4.0), OpenMx
77
Imports: Matrix, MASS, ellipse, graphics, stats, utils, mvtnorm, numDeriv, lavaan
88
Suggests: metafor, semPlot, R.rsp, testthat, matrixcalc

NEWS

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
Release 1.3.0 (Jan 7, 2022)
1+
Release 1.3.1 (Aug 8, 2023)
2+
====================================
3+
* Lower the tolerance in testing asyCov(), which returns an error in latest R.
4+
5+
Release 1.3.0 (Jan 7, 2023)
26
====================================
37
* Fix a bug reported by Noel Card that meta() reported incorrect number of statistics and dfs.
48
* Rewrite asyCov() and rename the old one to asyCovOld().

inst/CITATION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
citHeader("To cite the 'metaSEM' package in publications use:")
22

3-
citEntry(entry="Article",
3+
bibentry(bibtype="Article",
44
title = "{metaSEM}: An R Package for Meta-Analysis using Structural Equation Modeling",
5-
author = personList(as.person("Mike W.-L. Cheung")),
5+
author = as.person("Mike W.-L. Cheung"),
66
journal = "Frontiers in Psychology",
77
year = "2015",
88
volume = "5",

man/metaSEM-package.Rd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
\tabular{ll}{
1515
Package: \tab metaSEM\cr
1616
Type: \tab Package\cr
17-
Version: \tab 1.3.0\cr
18-
Date: \tab 2023-01-07\cr
17+
Version: \tab 1.3.1\cr
18+
Date: \tab 2023-08-08\cr
1919
License: \tab GPL (>=2)\cr
2020
LazyLoad: \tab yes\cr
2121
}

tests/testthat/test_utilities.R

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -705,7 +705,8 @@ test_that("Testing new asyCov() correctly", {
705705

706706
set.seed(123456)
707707

708-
tolerance <- 1e-4
708+
## Lower tolerance
709+
tolerance <- 1e-3
709710

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

0 commit comments

Comments
 (0)