Commit 8619ed4b authored by Jim Fulton's avatar Jim Fulton

prep for release

parent 795dd8d4
CHANGES CHANGES
======= =======
Unreleased 4.0.0 (2013-08-18)
---------- ------------------
- Avoid reading excess random bytes when setting up an auth_digest session. - Avoid reading excess random bytes when setting up an auth_digest session.
......
...@@ -13,6 +13,7 @@ ...@@ -13,6 +13,7 @@
############################################################################## ##############################################################################
"""Setup """Setup
""" """
version = '4.0.0'
from setuptools import setup, find_packages from setuptools import setup, find_packages
import os import os
import sys import sys
...@@ -98,7 +99,7 @@ long_description = ( ...@@ -98,7 +99,7 @@ long_description = (
open('CHANGES.txt').read() open('CHANGES.txt').read()
) )
setup(name="ZEO", setup(name="ZEO",
version='4.0.0b1', version=version,
description = long_description.split('\n', 2)[1], description = long_description.split('\n', 2)[1],
long_description = long_description, long_description = long_description,
url = 'https://pypi.python.org/pypi/ZEO', url = 'https://pypi.python.org/pypi/ZEO',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment