Skip to content

Commit 86fc981

Browse files
committed
Updated NEWS.
1 parent 0a9f1ac commit 86fc981

File tree

2 files changed

+46
-10
lines changed

2 files changed

+46
-10
lines changed

NEWS

Lines changed: 36 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,25 @@
1-
statnet.common 4.11.0
1+
statnet.common 4.13.0
22
=====================
33

44
New utilities
55
-------------
66

7-
- New function, `modify_in_place()`, that attempts to modify the
8-
argument of its caller in place. A function can call it to modify
9-
its own arguments in place.
7+
- New `testthat` predicate, `skip_if_not_checking()`, that skips the
8+
test if it's not part of an `R CMD check`, e.g., if run by
9+
`testthat::test_local()`.
1010

11-
- New function, `log1mexp(x)` to compute `log(1-exp(-x))` minimizing
12-
the loss of precision. R provides a C macro `log1mexp(x)` but not
13-
the corresponding R wrapper.
11+
- New function, `enlist()` to wrap an object into a singleton list if
12+
it's not already a list, for various definitions of "list".
13+
14+
- `term_list` objects now have `envir()`, `envir<-()`, `sign()`, and
15+
`sign<-()` methods to better encapsulate their environment and sign
16+
information.
17+
18+
statnet.common 4.12.0
19+
=====================
20+
21+
New utilities
22+
-------------
1423

1524
- New matrix functions: `qrssolve()` to solve linear systems via QR
1625
decomposition after scaling, and `qrsolve()` to do the same without
@@ -38,9 +47,6 @@ New utilities
3847
Enhancements to existing utilities
3948
----------------------------------
4049

41-
- The behavior of `trim_env()` has changed: if no variables are to be
42-
copied in, the environment is set directly to `baseenv()`.
43-
4450
- `statnetStartupMessage()` now prints `Remote:` information if the
4551
package was installed from a remote.
4652

@@ -58,6 +64,26 @@ Enhancements to existing utilities
5864
`all.equal()`), and the use any of the elements in the list as the
5965
reference. (Thanks to Michał Bojanowski @mbojan.)
6066

67+
statnet.common 4.11.0
68+
=====================
69+
70+
New utilities
71+
-------------
72+
73+
- New function, `modify_in_place()`, that attempts to modify the
74+
argument of its caller in place. A function can call it to modify
75+
its own arguments in place.
76+
77+
- New function, `log1mexp(x)` to compute `log(1-exp(-x))` minimizing
78+
the loss of precision. R provides a C macro `log1mexp(x)` but not
79+
the corresponding R wrapper.
80+
81+
Enhancements to existing utilities
82+
----------------------------------
83+
84+
- The behavior of `trim_env()` has changed: if no variables are to be
85+
copied in, the environment is set directly to `baseenv()`.
86+
6187
statnet.common 4.10.0
6288
=====================
6389

NEWS.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# statnet.common 4.13.0
2+
3+
## New utilities
4+
5+
* New `testthat` predicate, `skip_if_not_checking()`, that skips the test if it's not part of an `R CMD check`, e.g., if run by `testthat::test_local()`.
6+
7+
* New function, `enlist()` to wrap an object into a singleton list if it's not already a list, for various definitions of "list".
8+
9+
* `term_list` objects now have `envir()`, `envir<-()`, `sign()`, and `sign<-()` methods to better encapsulate their environment and sign information.
10+
111
# statnet.common 4.12.0
212

313
## New utilities

0 commit comments

Comments
 (0)