Skip to content

Commit 474e034

Browse files
committed
news and changelog updates, roll minor version, revert license
1 parent 249138e commit 474e034

File tree

5 files changed

+43
-55
lines changed

5 files changed

+43
-55
lines changed

ChangeLog

+35
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,38 @@
1+
2022-01-05 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION (Version, Date): Roll minor version
4+
5+
* README.md: Add Bryan to Authors here too
6+
* inst/NEWS.md: Updated
7+
8+
* DESCRIPTION: Rever back to just GPL (>= 2)
9+
* LICENSE: Idem
10+
11+
2022-01-04 Bryan W. Lewis <[email protected]>
12+
13+
* man/redisMonitorChannels.Rd: Improved minimal example
14+
* man/listen.Rd: Idem
15+
16+
2022-01-03 Bryan W. Lewis <[email protected]>
17+
18+
* R/pubsub.R: Simplified yet improved direct pub/sub support
19+
* src/Redis.cpp: Idem
20+
* man/redisMonitorChannels.Rd: Idem
21+
* man/listen.Rd: Idem
22+
23+
* src/init.c: Removed now unneeded more direct import from rredis
24+
* src/libsock.c: Idem
25+
* R/internal.R: Idem
26+
* R/rredis-misc.R: Idem
27+
* man/redisAuth.Rd: Idem
28+
* man/redisClose.Rd: Idem
29+
* man/redisCmd.Rd: Idem
30+
* man/redisConnect.Rd: Idem
31+
* man/redisPublish.Rd: Idem
32+
* man/redisSubscribe.Rd: Idem
33+
* man/redisUnsubscribe.Rd: Idem
34+
* man/redisZAdd.Rd: Idem
35+
136
2021-12-31 Dirk Eddelbuettel <[email protected]>
237

338
* src/libsock.c (_OPEN_FD, _SOCK_NAGLE): Register as symbols, but use

DESCRIPTION

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Package: RcppRedis
22
Type: Package
33
Title: 'Rcpp' Bindings for 'Redis' using the 'hiredis' Library
4-
Version: 0.1.11.1
5-
Date: 2021-12-30
4+
Version: 0.1.11.2
5+
Date: 2022-01-05
66
Author: Dirk Eddelbuettel and Bryan W. Lewis
77
Maintainer: Dirk Eddelbuettel <[email protected]>
88
Description: Connection to the 'Redis' key/value store using the
@@ -15,7 +15,7 @@ SystemRequirements: An available hiredis library (eg via package
1515
preferred but otherwise built on demand.
1616
URL: https://github.com/eddelbuettel/rcppredis, https://dirk.eddelbuettel.com/code/rcpp.redis.html
1717
BugReports: https://github.com/eddelbuettel/rcppredis/issues
18-
License: GPL-2 | GPL-3 | Apache License (>= 2)
18+
License: GPL (>= 2)
1919
Imports: methods, Rcpp (>= 0.11.0), RApiSerialize
2020
LinkingTo: Rcpp, RApiSerialize
2121
Suggests: RcppMsgPack, rredis, tinytest

LICENSE

-45
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,4 @@
11

2-
The RcppRedis package is released under the GNU GPL, Version 2 or later.
3-
4-
This covers all files in the package, as well as the package
5-
aggregation, with the exception of the files listed explicitly below
6-
which were already licensed under the Apache License, Version 2.0, and
7-
continue to be licensed under the Apache License, Version 2.0.
8-
9-
The files
10-
11-
R/pubsub.R
12-
R/internal.R
13-
R/rredis-misc.R: Idem
14-
src/libsock.c
15-
man/redisPublish.Rd
16-
man/redisSubscribe.Rd
17-
man/redisUnsubscribe.Rd
18-
man/redisMonitorChannels.Rd
19-
man/redisCmd.Rd
20-
man/redisAuth.Rd
21-
man/redisClose.Rd
22-
man/redisConnect.Rd
23-
man/redisZAdd.Rd
24-
tests/pubsub.R
25-
26-
are included from the rredis package, and have been licensed under the
27-
Apache License, Version 2, and remain under the Apache License.
28-
29-
30-
The typical Apache License, Version 2.0, statement follows.
31-
32-
Licensed under the Apache License, Version 2.0 (the "License");
33-
you may not use this file except in compliance with the License.
34-
You may obtain a copy of the License at
35-
36-
https://www.apache.org/licenses/LICENSE-2.0
37-
38-
Unless required by applicable law or agreed to in writing, software
39-
distributed under the License is distributed on an "AS IS" BASIS,
40-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
41-
See the License for the specific language governing permissions and
42-
limitations under the License.
43-
44-
45-
The full text of the GNU GPL, Version 2, follows.
46-
472
GNU GENERAL PUBLIC LICENSE
483
Version 2, June 1991
494

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ This package was derived from an initial fork of an earlier attempt named
5252
ways. William Pleasant provided some early patches. Whit Armstrong and
5353
Russell Pierce contributed extensions.
5454

55-
### Author
55+
### Authors
5656

57-
Dirk Eddelbuettel, based on earlier work by Wush Wu and with contributions by
58-
William Pleasant, Russell Pierce and Whit Armstrong.
57+
Dirk Eddelbuettel and Bryan W. Lewis, based on earlier work by Wush Wu and
58+
with contributions by William Pleasant, Russell Pierce and Whit Armstrong.
5959

6060
### License
6161

inst/NEWS.Rd

+2-4
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,8 @@
77
\itemize{
88
\item Two simple C++11 feature remove needs for \pkg{BH} and \code{lexical_cast()}
99
(Dirk in \ghpr{45} addressing \ghit{44})
10-
\item Redis pub/sub is now supported by importing the R functions
11-
and C underpinning from \pkg{rredis} (Dirk in \ghpr{43})
12-
\item Bryan Lewis is now a coauthor; the imported functions remain
13-
licenced under the Apache License 2.0.
10+
\item Redis pub/sub is now supported (Dirk in \ghpr{43}, Bryan in \ghpr{46})
11+
\item Bryan Lewis is now a coauthor
1412
}
1513
}
1614

0 commit comments

Comments
 (0)