From: Zooko O'Whielacronx Date: Fri, 20 Apr 2007 17:53:23 +0000 (-0700) Subject: zfec: bump version number to zfec 1.0.0a3-1-STABLE X-Git-Tag: tahoe_v0.1.0-0-UNSTABLE~23 X-Git-Url: https://git.rkrishnan.org/COPYING.GPL?a=commitdiff_plain;h=53b4ced01a998c38a0b1bc293a68530c7007e128;p=tahoe-lafs%2Ftahoe-lafs.git zfec: bump version number to zfec 1.0.0a3-1-STABLE --- diff --git a/zfec/setup.py b/zfec/setup.py index 287b630f..9bd37e11 100644 --- a/zfec/setup.py +++ b/zfec/setup.py @@ -59,7 +59,7 @@ trove_classifiers=[ ] setup(name='zfec', - version='1.0.0a2', + version='1.0.0a3', summary='a fast C implementation of Reed-Solomon erasure coding with command-line, C, and Python interfaces', description='Erasure coding -- also called "forward error correction" -- is the generation of redundant blocks of information such that if some blocks are lost ("erased") then the original data can be recovered from the remaining blocks. This package contains an optimized implementation along with command-line, C, and Python interfaces.', author='Zooko O\'Whielacronx', diff --git a/zfec/zfec/__init__.py b/zfec/zfec/__init__.py index f0f5a2f7..272904a4 100644 --- a/zfec/zfec/__init__.py +++ b/zfec/zfec/__init__.py @@ -10,7 +10,7 @@ from util.version import Version # For an explanation of what the parts of the version string mean, # please see pyutil.version. -__version__ = Version("1.0.0a2-1-STABLE") +__version__ = Version("1.0.0a3-1-STABLE") # Please put a URL or other note here which shows where to get the branch of # development from which this version grew.