Skip to content

Commit

Permalink
Prep for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Rossi committed Sep 15, 2012
1 parent fbd5d3f commit 7837b30
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Change Log
==========

1.0 (TBD)
---------

Initial release.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from setuptools import find_packages
import sys

VERSION = '1.0a1'
VERSION = '1.0b1'

requires = [
'transaction',
Expand All @@ -19,7 +19,7 @@
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = '' #open(os.path.join(here, 'CHANGES.txt')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
except IOError:
README = CHANGES = ''

Expand All @@ -28,7 +28,7 @@
description='ACID semantics for the filesystem.',
long_description=README + '\n\n' + CHANGES,
classifiers=[
"Development Status :: 3 - Alpha",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
Expand Down

0 comments on commit 7837b30

Please sign in to comment.