Skip to content

Commit

Permalink
Updating for 0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
wooster committed Aug 17, 2014
1 parent c52dbea commit 1ba3f00
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,5 @@
2014-08-17 wooster v0.8
-----------------------

Fixes [\#3 testFileRead fails using python 3.x](https://bitbucket.org/wooster/biplist/issue/3/testfileread-fails-using-python-3x)
along with several other Python 3 compatibility issues.
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -19,14 +19,14 @@

author = 'Andrew Wooster'
email = 'andrew@planetaryscale.com'
version = '0.7'
version = '0.8'
desc = 'biplist is a library for reading/writing binary plists.'

setup(
name = 'biplist',
version = version,
url = 'https://bitbucket.org/wooster/biplist',
download_url = 'https://bitbucket.org/wooster/biplist/downloads/biplist-0.7.tar.gz',
download_url = 'https://bitbucket.org/wooster/biplist/downloads/biplist-0.8.tar.gz',
license = 'BSD',
description = desc,
long_description =
Expand Down
1 change: 0 additions & 1 deletion tests/test_write.py
Expand Up @@ -132,7 +132,6 @@ def testWriteToFile(self):
self.assertTrue(os.path.exists(path))
with open(path, 'rb') as f:
self.lintPlist(f.read())
#self.lintPlist(open(path, 'rb').read())

def testNone(self):
self.roundTrip(None)
Expand Down

0 comments on commit 1ba3f00

Please sign in to comment.