Modified:
/trunk/CHANGES
/trunk/README
/trunk/mpmath/__init__.py
/trunk/setup.py
=======================================
--- /trunk/CHANGES Fri Sep 24 07:32:47 2010
+++ /trunk/CHANGES Tue Feb 1 12:03:50 2011
@@ -1,3 +1,32 @@
+--0.17--
+Released February 1, 2011
+
+Compatibility:
+
+* Python 3 is now supported
+* Dropped Python 2.4 compatibility
+* Fixed Python 2.5 compatibility in matrix slicing code
+* Implemented Python 3.2-compatible hashing, making mpmath numbers
+ hash compatible with extremely large integers and with fractions
+ in Python versions >= 3.2 (contributed by Case Vanhorsen)
+
+Special functions:
+
+* Implemented the von Mangoldt function (mangoldt())
+* Implemented the "secondary zeta function" (secondzeta()) (contributed
+ by Juan Arias de Reyna).
+* Implemented zeta zero counting (nzeros()) and the Backlund S function
+ (backlunds()) (contributed by Juan Arias de Reyna)
+* Implemented derivatives of order 1-4 for siegelz() and siegeltheta()
+ (contributed by Juan Arias de Reyna)
+* Improved Euler-Maclaurin summation for zeta() to give more accurate
+ results in the right half-plane when the reflection formula
+ cannot be used
+* Implemented the Lerch transcendent (lerchphi())
+* Fixed polygamma function to return a complex NaN at complex
+ infinity or NaN, instead of raising an unrelated exception.
+
+
--0.16--
Released September 24, 2010
=======================================
--- /trunk/README Fri Sep 24 07:07:19 2010
+++ /trunk/README Tue Feb 1 12:03:50 2011
@@ -57,6 +57,7 @@
Release history:
+* Version 0.17 released on February 1, 2011
* Version 0.16 released on September 24, 2010
* Version 0.15 released on June 6, 2010
* Version 0.14 released on February 5, 2010
@@ -77,8 +78,8 @@
1. Download & installation
--------------------------
-Mpmath requires a recent version of Python. It should work with
-Python 2.4, 2.5 and 2.6.
+Mpmath requires Python 2.5 or later. It has been tested
+with Python 2.5, 2.6, 2.7, 3.1 and 3.2.
The latest release of mpmath can be downloaded from the mpmath
website. It should also be available in the Python Package Index at
=======================================
--- /trunk/mpmath/__init__.py Sun Jan 9 09:47:36 2011
+++ /trunk/mpmath/__init__.py Tue Feb 1 12:03:50 2011
@@ -1,4 +1,4 @@
-__version__ = '0.17-svn'
+__version__ = '0.17'
from .usertools import monitor, timing
=======================================
--- /trunk/setup.py Fri Sep 24 07:07:19 2010
+++ /trunk/setup.py Tue Feb 1 12:03:50 2011
@@ -4,7 +4,7 @@
setup(name='mpmath',
description = 'Python library for arbitrary-precision floating-point
arithmetic',
- version='0.16',
+ version='0.17',
url='http://mpmath.googlecode.com',
author='Fredrik Johansson',
author_email='fredrik....@gmail.com',