Revision: 574
          http://rpy.svn.sourceforge.net/rpy/?rev=574&view=rev
Author:   lgautier
Date:     2008-07-05 07:50:01 -0700 (Sat, 05 Jul 2008)

Log Message:
-----------
- bumped version number for the package to 2.0.0a1
- added file NEWS

Modified Paths:
--------------
    branches/rpy_nextgen/setup.py

Added Paths:
-----------
    branches/rpy_nextgen/NEWS

Added: branches/rpy_nextgen/NEWS
===================================================================
--- branches/rpy_nextgen/NEWS                           (rev 0)
+++ branches/rpy_nextgen/NEWS   2008-07-05 14:50:01 UTC (rev 574)
@@ -0,0 +1,58 @@
+
+Release 2.0a1
+=============
+
+New features
+------------
+
+:mod:`rpy2.robjects`:
+
+- method :meth:`getnames` for :class:`RVector`
+
+- experimental methods :meth:`__setitem__` and :meth:`setnames` for 
:class:`RVector`
+
+- method 'getnames' for :class:`RArray`
+
+- new class :class:`RFormula`
+
+- new helper class :class:`RVectorDelegator` (see below)
+
+- indexing RVector the "R way" with subset is now possible through a 
delegating attribute (e.g., myvec.r[True] rather than myvec.subset(True)). 
#suggested by Michael Sorich
+
+- new class :class:`RDataFrame`. The constructor :meth:`__init__` is still 
experimental (need for an ordered dictionnary, that will be in before the beta
+
+- filled documentation about mapping between objects
+
+Changes
+-------
+
+- many fixes and additions to the documentation
+
+- improved GTK console in the demos
+
+- changed the major version number to 2 in order to avoid confusion with rpy 
1.x # Suggested by Peter and Gregory Warnes
+
+- moved test.py to demos/example01.py
+
+:mod:`rpy2.robjects`:
+
+- changed method name `getNames` to `getnames` where available (all lower-case 
names for methods seems to be the accepted norm in Python).
+
+
+Bugs fixed
+----------
+
+:mod:`rpy2.robjects`:
+
+- Fixed string representation of R object on Microsoft Windows (using fifo, 
not available on win32)
+
+- :meth:`__getattr__` for :class:`RS4` is now using :meth:`ri2py` 
+
+:mod:`rpy2.rinterface`:
+
+- fixed context of evaluation for R functions (now R_GlobalEnv)
+
+Release 1.0a0
+=============
+
+- First public release
\ No newline at end of file

Modified: branches/rpy_nextgen/setup.py
===================================================================
--- branches/rpy_nextgen/setup.py       2008-07-05 14:48:02 UTC (rev 573)
+++ branches/rpy_nextgen/setup.py       2008-07-05 14:50:01 UTC (rev 574)
@@ -4,7 +4,7 @@
 
 
 pack_name = 'rpy2'
-pack_version = '1.0-a1'
+pack_version = '2.0.0-a1'
 
 RHOMES = os.getenv('RHOMES')
 


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
_______________________________________________
rpy-list mailing list
rpy-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/rpy-list

Reply via email to