forked from r-lib/R6
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNEWS
50 lines (33 loc) · 1.79 KB
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
R6 2.0.2
-------------------------------------------------------------------------------
* Previously, when an R6 object was printed, it accessed (and called) active
bindings. Now it simply reports that a field is an active binding. (#37, #38.
Thanks to Oscar de Lama)
R6 2.0.1
-------------------------------------------------------------------------------
* A superclass is validated on object instantation, not on class creation.
* Added `debug` and `undebug` methods to generator object.
R6 2.0
-------------------------------------------------------------------------------
* [BREAKING CHANGE] Added `portable` option, which allows inheritance across
different package namespaces, and made it the default.
* Added `set()` method on class generator object, so new fields and methods can
be added after the generator has been created.
* All of the functions involved in instantiating objects are encapsulated in
an environment separate from the R6 namespace. This means that if a
generator is created with one version of R6, saved, then restored in a new R
session that has a different version of R6, there shouldn't be any problems
with compatibility.
* Methods are locked so that they can't be changed. (Fixes #19)
* Inheritance of superclasses is dynamic; instead of reading in the superclass
when a class is created, this happens each time an object is instantiated.
(Fixes #12)
* Added trailing newline when printing R6 objects. (Thanks to Gabor Csardi)
* The `print` method of R6 objects can be redefined. (Thanks to Gabor Csardi)
R6 1.0.1
-------------------------------------------------------------------------------
* First release on CRAN.
* Removed pryr from suggested packages.
R6 1.0
-------------------------------------------------------------------------------
* First release