diff --git a/DESCRIPTION b/DESCRIPTION index 3b5bebd..72810d7 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: wooldridge Type: Package Title: 115 Data Sets from "Introductory Econometrics: A Modern Approach, 7e" by Jeffrey M. Wooldridge -Version: 1.4-4 +Version: 1.4-3 Authors@R: c( person("Justin M.", "Shea", role = c("aut", "cre"), email = "jshea@roosevelt.edu"), person("Kennth H.", "Brown", role = c("ctb"), email = "KennethBrown@MissouriState.edu")) @@ -12,7 +12,7 @@ Description: Students learning both econometrics and R may find the introduction the original source, time of publication, and notes from the author suggesting avenues for further analysis and research. If one needs an introduction to R model syntax, a vignette contains solutions to examples from chapters of the text. - Data sets are from the 7th edition (Wooldridge 2020, ISBN-13: 978-1-337-55886-0), + Data sets are from the 7th edition (Wooldridge 2020, ISBN-13 978-1-337-55886-0), and are backwards compatible with all previous versions of the text. Depends: R (>= 3.5.0) License: GPL-3 diff --git a/NEWS.md b/NEWS.md index 7ca08d8..81093d3 100644 --- a/NEWS.md +++ b/NEWS.md @@ -2,12 +2,14 @@ title: "NEWS" output: github_document --- + # wooldridge 1.4-3 - Implemented Github Actions for R - Fix minor spelling mistakes +- marked `quantmod` examples as DO NOT RUN, due to error on Fedora Linux 36 (Workstation Edition), # wooldridge 1.4-2 diff --git a/cran-comments.md b/cran-comments.md index 392a18f..aaa1dd9 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -1,36 +1,43 @@ -# Test environments passing +Archived today due to policy violation. I fixed the section of the vignette which created the problem on the Fedora Linux 36 (Workstation Edition) and am re-submitting. In addition, I've run the following tests: + -# Local: R version 4.1.1 (2021-08-10) -x86_64-pc-linux-gnu (64-bit), Ubuntu 20.04.3 LTS +# Test environments passing +# Local: R version 4.2.3 (2023-03-15) +x86_64-pc-linux-gnu (64-bit), Ubuntu 22.04.2 LTS ## Local R CMD check results -0 errors ✓ | 0 warnings ✓ | 0 notes ✓ +Status: OK R CMD check succeeded -# win-builder: R version 4.1.1 (2021-08-10), -using platform: x86_64-w64-mingw32 (64-bit) -using session charset: ISO8859-1 - -## Status: OK - -# AppVeyor: R version 4.1.2 Patched (2021-11-04 r81149) +# AppVeyor: R version 4.3.0 Patched (2023-05-02 r84382 ucrt) Platform: x86_64-w64-mingw32/x64 (64-bit) Running under: Windows Server 2012 R2 x64 (build 9600) - ## Status: OK Build success -# R-hub: R version 4.1.1 Patched (2021-09-05 r80862), -Platform: Apple Silicon (M1), macOS 11.6 Big Sur. - +# win-builder: R version 4.3.0 (2023-04-21 ucrt), +using platform: x86_64-w64-mingw32 (64-bit) +* R was compiled by + gcc.exe (GCC) 12.2.0 + GNU Fortran (GCC) 12.2.0 +* running under: Windows Server 2022 x64 (build 20348) +* using session charset: UTF-8 +## Status: 1 NOTE +Maintainer: 'Justin M. Shea ' +New submission +Package was archived on CRAN + +# R-hub: R Under development (unstable) (2023-05-02 r84382) +Platform: x86_64-pc-linux-gnu (64-bit) +* R was compiled by + Debian clang version 14.0.6 + GNU Fortran (Debian 12.2.0-14) 12.2.0 +* running under: Debian GNU/Linux 12 (bookworm) +* using session charset: ISO8859-15 ## Status: OK # R-hub: R version 4.1.1 (2021-08-10) -macOS 10.13.6 High Sierra, R-release, CRAN's setup - +using platform: x86_64-apple-darwin17.0 (64-bit) +using session charset: UTF-8 ## Status: OK - - - - diff --git a/devscripts/build-checks.R b/devscripts/build-checks.R index 1df55de..4ebdb8d 100644 --- a/devscripts/build-checks.R +++ b/devscripts/build-checks.R @@ -13,10 +13,9 @@ rhub::validate_email() rhub::platforms() rhub::platforms()$name -rhub::check(platform = rhub::platforms()$name[1]) # debian-clang-devel" -rhub::check(platform = rhub::platforms()$name[4]) # debian-gcc-devel -rhub::check(platform = rhub::platforms()$name[11]) # macos-highsierra-release-cran -rhub::check(platform = rhub::platforms()$name[12]) # macos-m1-bigsur-release +rhub::check(platform = rhub::platforms()$name[1]) +rhub::check(platform = rhub::platforms()$name[4]) +rhub::check(platform = rhub::platforms()$name[9]) # macos-highsierra-release-cran rhub::check(platform = rhub::platforms()$name[16]) # windows-x86_64-devel -rhub::check(platform = rhub::platforms()$name[20]) # windows-x86_64-release +rhub::check(platform = rhub::platforms()$name[19]) # windows-x86_64-release