-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog
79 lines (47 loc) · 2.29 KB
/
ChangeLog
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
2024-07-29 Martin Maechler <[email protected]>
* DESCRIPTION (Authors@R, Version): 1.0-8
2021-04-13 Martin Maechler <[email protected]>
* From Dan Robertson (dlrobertson) via GH PR #3, Feb.2016:
Introduce C-style "operators":
"%&%", "%|%", "%^%", "%<<%", "%>>%"
2021-03-30 Martin Maechler <[email protected]>
* src/bit-ops.c (R_2_UINT_): cast even more, now via _2_UINT_()
2021-03-24 Martin Maechler <[email protected]>
* DESCRIPTION (Date, URL): cosmetic before finally releasing
2020-01-03 Martin Maechler <[email protected]>
* DESCRIPTION (Version): 1.0-7
* src/bit-ops.c, src/init.c: use registration; fix UBSAN detected bug
* man/*.Rd: more examples
2013-08-17 Martin Maechler <[email protected]>
* DESCRIPTION (Version): 1.0-6
* src/bit-ops.c: fix (Redhat package) bug.
2012-11-10 Martin Maechler <[email protected]>
* DESCRIPTION (Version): 1.0-5, New maintainer
* man/*.Rd: some cosmetics, notably '\seealso{}'s and '\link{}'s.
2005-01-28 Steve Dutky <[email protected]>
* DESCRIPTION (Version): 1.0-4
* src/cksum.c: replaced all 'u_int' with 'unsigned character' to
hopefully allow successful check & install for Windows
2005-01-26 Steve Dutky <[email protected]>
* DESCRIPTION (Version): 1.0-3
* src/bit-ops.c: converted from long long to unsigned long to
ensure ANSI C compliance, redid limit checks to 32 bits
* tests/consistency.R: adjusted limit checks
* man/{ bitAnd.Rd bitFlip.Rd bitShiftL.Rd cksum.Rd}:
adjusted to reflect use of unsigned long in place of
long long
* man/cksum.Rd: corrected reference to ACM article.
2005-01-10 Steve Dutky <[email protected]>
* DESCRIPTION (Version): 1.0-2
* src/bit-ops.c: (double *) i++ wherever NA_REAL set for binary ops
tests & warnings compliant to recycling rules
* src/init.c: not referenced, removed
* tests/consistency.R: fixed, extended tests for NA, NaN, etc.
2004-11-22 Martin Maechler <[email protected]>
* DESCRIPTION (Version): 1.0-1
* src/cksum.c: use 'int', not 'long' (to work on 64-bit!)
* man/cksum.Rd: fix \references{}, \email
2004-11-04 Steve Dutky <[email protected]>
* DESCRIPTION (Version): 1.0-0
* R/bitops.R: use .Call() everywhere
* .....