This file lists the incompatible changes between Version 1.39.15 and 2.00

+ The calculator GP:
====================
 - most function names have changed (see lib/new.dico or use whatnow under GP)
 - lowercase / uppercase letters distinguished.
 - the syntax \var = value is not recognized anymore. Use standard 
   metacommands instead.
(setting the compatibility level "compatible" to 3, with "default" will give
you those three back).

 - strict parenthesis matching before executing the command 
(set strictmatch to 0 to get old behaviour)

 - functions label / goto have been removed (use break/next/return instead).
 - conjugation x_ has been removed. '_' can be freely use in identifiers.

 - result history is now cyclic (older results are erased when the maximal
   size "histsize" is reached).
 - the Set() function turns objects into strings (so that set functions are
   able to treat arbitrary objects). Use eval to turn them back to GENs.
 - the type() function returns a string and not a number.
 - sum(X=a,b,...,x) always yields x if b<a. Analogous statement for prod.

+ The library PARI:
===================
 - we now use symbolic type names (t_INT, etc.). You should not use any
   explicit number in your programs since these are liable to change (they
   have not yet, but they will).
 - the codewords of GEN objects have a different internal structure. The
   components should only be accessed through the documented macros.
 - the following constant names has changed ("pari" prepended): C1, C2, C3, K,
   K1, K2, K4. The constant C31 has disappeared.
 - prec is not declared in the headers anymore, i.e it is no longer global.
 - char *pariversion not set anymore (use the macros PARIVERSION/PARIINFO)
 - LONG_IS_32BIT is never defined (we test whether LONG_IS_64BIT is defined
   or not).
 - gen2str() renamed to GENtostr().
 - init() renamed to pari_init().
 - the macro mant() has been suppressed.
 - gitoascii() suppressed, use GENtostr().
 - imprimer() suppressed. output() is now a function and can be used under
   all debuggers.
 - the prototypes and behaviour of gredsp() and normalize() have changed.
   They are not documented anymore.
 - the install() function has been modified (use codes instead of valence).
 - gpuigs only has two arguments.
