[R-gregmisc-users] SF.net SVN: r-gregmisc:[1700] trunk/gtools
Brought to you by:
warnes
From: <wa...@us...> - 2013-07-06 23:43:59
|
Revision: 1700 http://sourceforge.net/p/r-gregmisc/code/1700 Author: warnes Date: 2013-07-06 23:43:56 +0000 (Sat, 06 Jul 2013) Log Message: ----------- Update for gtools 3.0.0 Modified Paths: -------------- trunk/gtools/DESCRIPTION trunk/gtools/inst/NEWS Modified: trunk/gtools/DESCRIPTION =================================================================== --- trunk/gtools/DESCRIPTION 2013-07-06 23:26:07 UTC (rev 1699) +++ trunk/gtools/DESCRIPTION 2013-07-06 23:43:56 UTC (rev 1700) @@ -1,8 +1,8 @@ Package: gtools Title: Various R programming tools Description: Various R programming tools -Version: 2.7.2 -Date: 2013-07-05 +Version: 3.0.0 +Date: 2013-07-06 Author: Gregory R. Warnes, Ben Bolker, and Thomas Lumley Maintainer: Gregory R. Warnes <gr...@wa...> License: LGPL-2.1 Modified: trunk/gtools/inst/NEWS =================================================================== --- trunk/gtools/inst/NEWS 2013-07-06 23:26:07 UTC (rev 1699) +++ trunk/gtools/inst/NEWS 2013-07-06 23:43:56 UTC (rev 1700) @@ -1,6 +1,24 @@ -gtools 2.7.2 - 2013-07-05 +gtools 3.0.0 - 2013-07-06 ------------------------- +Major changes: + +- The function 'addLast()' has been deprecated because it directly + manipulates the global environment, which is expressly prohibited by + the CRAN policies. + +- A new function, 'lastAdd()' has been created to replace 'addLast()'. + The name has been changed because the two functions require + different syntax. 'addLast()' was used like this: + + byeWorld <- function() cat("\nGoodbye World!\n") + addLast(byeWorld) + + The new 'lastAdd()' function is used like this: + + byeWorld <- function() cat("\nGoodbye World!\n") + .Last <- lastAdd(byeWorld) + Bug fixes: - Update checkRVersion() to work with R version 3.0.0 and later. @@ -8,9 +26,10 @@ Other changes: - Remove cross-reference to (obsolete?) moc package -- Add text to man page for addLast() noting that the value of .Last is - changed in the global environment. +- The function 'assert()' (deprecated since gtools 2.5.0) is no longer + available and has been marked defunct. + gtools 2.7.1 - 2013-03-17 ------------------------- This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |