From 298d9f16305267bbbb52e31ec97a660b49408c19 Mon Sep 17 00:00:00 2001 From: mike Date: Fri, 15 Mar 2024 17:32:30 +1000 Subject: [PATCH] clarify authorship and copyright [fixes #33] --- DESCRIPTION | 5 +++-- NEWS.md | 1 + inst/COPYRIGHTS | 4 ++++ 3 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 inst/COPYRIGHTS diff --git a/DESCRIPTION b/DESCRIPTION index f2b4599..8afe710 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -5,7 +5,7 @@ Version: 0.1.18.9002 Authors@R: c( person("Mike", "Cheng", role = c("aut", "cre", 'cph'), email = "mikefc@coolbutuseless.com"), - person("Yao", "Yuan", role = "cph", email = "ibireme@gmail.com", + person("Yao", "Yuan", role = c("aut", "cph"), email = "ibireme@gmail.com", comment="Author of bundled yyjson")) Maintainer: Mike Cheng Description: A fast JSON parser, generator and validator which converts JSON @@ -13,7 +13,7 @@ Description: A fast JSON parser, generator and validator which converts JSON (e.g. logical, numeric, integer) with configurable handling of NULL and NA values. Data frames, atomic vectors and lists are all supported as data containers translated to/from JSON. - This implementation is a wrapper around the 'yyjson' 'C' library which + This implementation wraps the 'yyjson' 'C' library which is available from . License: MIT + file LICENSE URL: https://github.com/coolbutuseless/yyjsonr, https://coolbutuseless.github.io/package/yyjsonr/ @@ -30,5 +30,6 @@ Suggests: testthat (>= 3.0.0) Config/testthat/edition: 3 VignetteBuilder: knitr +Copyright: Copyright (c) 2020 YaoYuan. See 'inst/COPYRIGHTS' for LICENSE for inclued code. Depends: R (>= 3.5.0) diff --git a/NEWS.md b/NEWS.md index 7955c4e..cedc185 100644 --- a/NEWS.md +++ b/NEWS.md @@ -3,6 +3,7 @@ # yyjsonr 0.1.18.9003 2024-03-13 * call `normalizePath()` on all file paths +* clarify authorship and copyright # yyjsonr 0.1.18.9002 2024-03-07 diff --git a/inst/COPYRIGHTS b/inst/COPYRIGHTS new file mode 100644 index 0000000..e5fd66c --- /dev/null +++ b/inst/COPYRIGHTS @@ -0,0 +1,4 @@ + +The included 'yyjson' library code is Copyright (c) 2020 YaoYuan . + +See 'inst/LICENSE-yyjson.txt' for license file from original source code.