Skip to content

Commit

Permalink
adding v3.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
SurajGupta committed Jun 21, 2016
1 parent 2b134af commit a28e609
Show file tree
Hide file tree
Showing 146 changed files with 892 additions and 482 deletions.
4 changes: 2 additions & 2 deletions SVN-REVISION
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Revision: 70573
Last Changed Date: 2016-05-03
Revision: 70800
Last Changed Date: 2016-06-21
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.0
3.3.1
2 changes: 1 addition & 1 deletion VERSION-NICK
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Supposedly Educational
Bug in Your Hair
18 changes: 9 additions & 9 deletions configure
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69 for R 3.3.0.
# Generated by GNU Autoconf 2.69 for R 3.3.1.
#
# Report bugs to <https://bugs.r-project.org>.
#
Expand Down Expand Up @@ -590,8 +590,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='R'
PACKAGE_TARNAME='R'
PACKAGE_VERSION='3.3.0'
PACKAGE_STRING='R 3.3.0'
PACKAGE_VERSION='3.3.1'
PACKAGE_STRING='R 3.3.1'
PACKAGE_BUGREPORT='https://bugs.r-project.org'
PACKAGE_URL='https://www.r-project.org'

Expand Down Expand Up @@ -1663,7 +1663,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures R 3.3.0 to adapt to many kinds of systems.
\`configure' configures R 3.3.1 to adapt to many kinds of systems.

Usage: $0 [OPTION]... [VAR=VALUE]...

Expand Down Expand Up @@ -1738,7 +1738,7 @@ fi

if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of R 3.3.0:";;
short | recursive ) echo "Configuration of R 3.3.1:";;
esac
cat <<\_ACEOF

Expand Down Expand Up @@ -1989,7 +1989,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
R configure 3.3.0
R configure 3.3.1
generated by GNU Autoconf 2.69

Copyright (C) 2012 Free Software Foundation, Inc.
Expand Down Expand Up @@ -3141,7 +3141,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by R $as_me 3.3.0, which was
It was created by R $as_me 3.3.1, which was
generated by GNU Autoconf 2.69. Invocation command line was

$ $0 $@
Expand Down Expand Up @@ -46481,7 +46481,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by R $as_me 3.3.0, which was
This file was extended by R $as_me 3.3.1, which was
generated by GNU Autoconf 2.69. Invocation command line was

CONFIG_FILES = $CONFIG_FILES
Expand Down Expand Up @@ -46548,7 +46548,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
R config.status 3.3.0
R config.status 3.3.1
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"

Expand Down
4 changes: 2 additions & 2 deletions doc/FAQ
Original file line number Diff line number Diff line change
Expand Up @@ -373,9 +373,9 @@ details.
----------------------------------

The 'bin/macosx' directory of a CRAN site contains a standard Apple
installer package to run on OS X 10.6 ('Snow Leopard') and later. Once
installer package to run on OS X 10.9 ('Mavericks') and later. Once
downloaded and executed, the installer will install the current release
of R and an R.app OS X GUI. This port of R for OS X is maintained by
of R and R.app, the OS X GUI. This port of R for OS X is maintained by
Simon Urbanek <[email protected]> (and previously by Stefano
Iacus). The "R for Mac OS X FAQ
(https://CRAN.R-project.org/bin/macosx/RMacOSX-FAQ.html) has more
Expand Down
40 changes: 40 additions & 0 deletions doc/NEWS
Original file line number Diff line number Diff line change
@@ -1,5 +1,45 @@
R News

CHANGES IN R 3.3.1:

BUG FIXES:

* R CMD INSTALL and hence install.packages() gave an internal error
installing a package called description from a tarball on a
case-insensitive file system.

* match(x, t) (and hence x %in% t) failed when x was of length one,
and either character and x and t only differed in their Encoding
or when x and t where complex with NAs or NaNs. (PR#16885.)

* unloadNamespace(ns) also works again when ns is a 'namespace', as
from getNamespace().

* rgamma(1,Inf) or rgamma(1, 0,0) no longer give NaN but the
correct limit.

* length(baseenv()) is correct now.

* pretty(d, ..) for date-time d rarely failed when "halfmonth" time
steps were tried (PR#16923) and on 'inaccurate' platforms such as
32-bit windows or a configuration with --disable-long-double; see
comment #15 of PR#16761.

* In text.default(x, y, labels), the rarely(?) used default for
labels is now correct also for the case of a 2-column matrix x
and missing y.

* as.factor(c(a = 1L)) preserves names() again as in R < 3.1.0.

* strtrim(""[0], 0[0]) now works.

* Use of Ctrl-C to terminate a reverse incremental search started
by Ctrl-R in the readline-based Unix terminal interface is now
supported for readline >= 6.3 (Ctrl-G always worked). (PR#16603)

* diff(<difftime>) now keeps the "units" attribute, as subtraction
already did, PR#16940.

CHANGES IN R 3.3.0:

SIGNIFICANT USER-VISIBLE CHANGES:
Expand Down
53 changes: 50 additions & 3 deletions doc/NEWS.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,53 @@
\title{R News}
\encoding{UTF-8}

\section{\Rlogo CHANGES IN R 3.3.1}{
\subsection{BUG FIXES}{
\itemize{
\item \command{R CMD INSTALL} and hence \code{install.packages()}
gave an internal error installing a package called
\pkg{description} from a tarball on a case-insensitive file system.

\item \code{match(x, t)} (and hence \code{x \%in\% t}) failed
when \code{x} was of length one, and either \code{character} and \code{x}
and \code{t} only differed in their \code{Encoding} or when
\code{x} and \code{t} where \code{complex} with \code{NA}s or \code{NaN}s.
(\PR{16885}.)

\item \code{unloadNamespace(ns)} also works again when \code{ns} is a
\sQuote{namespace}, as from \code{getNamespace()}.

\item \code{rgamma(1,Inf)} or \code{rgamma(1, 0,0)} no longer give
\code{NaN} but the correct limit.

\item \code{length(baseenv())} is correct now.

\item \code{pretty(d, ..)} for date-time \code{d} rarely failed
when \code{"halfmonth"} time steps were tried (\PR{16923}) and
on \sQuote{inaccurate} platforms such as 32-bit windows or
a configuration with \command{--disable-long-double}; see comment
#15 of \PR{16761}.

\item In \code{text.default(x, y, labels)}, the rarely(?) used
default for \code{labels} is now correct also for the case of a
2-column matrix \code{x} and missing \code{y}.

\item \code{as.factor(c(a = 1L))} preserves \code{names()} again
as in \R < 3.1.0.

\item \code{strtrim(""[0], 0[0])} now works.

\item Use of \code{Ctrl-C} to terminate a reverse incremental
search started by \code{Ctrl-R} in the \code{readline}-based Unix
terminal interface is now supported for \code{readline} >= 6.3
(\code{Ctrl-G} always worked). (\PR{16603})

\item \code{diff(<difftime>)} now keeps the \code{"units"}
attribute, as subtraction already did, \PR{16940}.
}
}
}

\section{\Rlogo CHANGES IN R 3.3.0}{
\subsection{SIGNIFICANT USER-VISIBLE CHANGES}{
\itemize{
Expand Down Expand Up @@ -324,7 +371,7 @@
\item \code{gzcon()} gains a new option \code{text}, which marks
the connection as text-oriented (so e.g.\sspace{}\code{pushBack()}
works). It is still always opened in binary mode.

\item The \code{import()} namespace directive now accepts an
argument \code{except} which names symbols to exclude from the
imports. The \code{except} expression should evaluate to a
Expand Down Expand Up @@ -576,15 +623,15 @@
\item \code{install.packages()} could give false errors when
\code{options("pkgType")} was \code{"binary"}. (Reported by
Jose Claudio Faria.)
\item A bug fix in \R 3.0.2 fixed problems with \code{locator()}
in X11, but introduced problems in Windows. Now both should be
fixed. (\PR{15700})
\item \code{download.file()} with \code{method = "wininet"}
incorrectly warned of download file length difference when
reported length was unknown. (\PR{16805})
\item \code{diag(NULL, 1)} crashed because of missed type
checking. (\PR{16853})
}
Expand Down
Binary file modified doc/NEWS.pdf
Binary file not shown.
64 changes: 64 additions & 0 deletions doc/html/NEWS.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,70 @@

<h2>R News</h2>

<h3><img src="../help/figures/../../html/Rlogo.svg" class="toplogo" alt="[R logo]" /> CHANGES IN R 3.3.1</h3>



<h4>BUG FIXES</h4>


<ul>
<li> <p><code>R CMD INSTALL</code> and hence <code>install.packages()</code>
gave an internal error installing a package called
<span class="pkg">description</span> from a tarball on a case-insensitive file system.
</p>
</li>
<li> <p><code>match(x, t)</code> (and hence <code>x %in% t</code>) failed
when <code>x</code> was of length one, and either <code>character</code> and <code>x</code>
and <code>t</code> only differed in their <code>Encoding</code> or when
<code>x</code> and <code>t</code> where <code>complex</code> with <code>NA</code>s or <code>NaN</code>s.
(<a href="https://bugs.R-project.org/bugzilla3/show_bug.cgi?id=16885">PR#16885</a>.)
</p>
</li>
<li> <p><code>unloadNamespace(ns)</code> also works again when <code>ns</code> is a
&lsquo;namespace&rsquo;, as from <code>getNamespace()</code>.
</p>
</li>
<li> <p><code>rgamma(1,Inf)</code> or <code>rgamma(1, 0,0)</code> no longer give
<code>NaN</code> but the correct limit.
</p>
</li>
<li> <p><code>length(baseenv())</code> is correct now.
</p>
</li>
<li> <p><code>pretty(d, ..)</code> for date-time <code>d</code> rarely failed
when <code>"halfmonth"</code> time steps were tried (<a href="https://bugs.R-project.org/bugzilla3/show_bug.cgi?id=16923">PR#16923</a>) and
on &lsquo;inaccurate&rsquo; platforms such as 32-bit windows or
a configuration with <code>--disable-long-double</code>; see comment
#15 of <a href="https://bugs.R-project.org/bugzilla3/show_bug.cgi?id=16761">PR#16761</a>.
</p>
</li>
<li><p> In <code>text.default(x, y, labels)</code>, the rarely(?) used
default for <code>labels</code> is now correct also for the case of a
2-column matrix <code>x</code> and missing <code>y</code>.
</p>
</li>
<li> <p><code>as.factor(c(a = 1L))</code> preserves <code>names()</code> again
as in <span style="font-family: Courier New, Courier; color: #666666;"><b>R</b></span> &lt; 3.1.0.
</p>
</li>
<li> <p><code>strtrim(""[0], 0[0])</code> now works.
</p>
</li>
<li><p> Use of <code>Ctrl-C</code> to terminate a reverse incremental
search started by <code>Ctrl-R</code> in the <code>readline</code>-based Unix
terminal interface is now supported for <code>readline</code> &gt;= 6.3
(<code>Ctrl-G</code> always worked). (<a href="https://bugs.R-project.org/bugzilla3/show_bug.cgi?id=16603">PR#16603</a>)
</p>
</li>
<li> <p><code>diff(&lt;difftime&gt;)</code> now keeps the <code>"units"</code>
attribute, as subtraction already did, <a href="https://bugs.R-project.org/bugzilla3/show_bug.cgi?id=16940">PR#16940</a>.
</p>
</li></ul>




<h3><img src="../help/figures/../../html/Rlogo.svg" class="toplogo" alt="[R logo]" /> CHANGES IN R 3.3.0</h3>


Expand Down
Loading

0 comments on commit a28e609

Please sign in to comment.