Skip to content

Commit

Permalink
Release notes etc. for 3.1.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
scott-griffiths committed May 17, 2016
1 parent 5fb3fc4 commit ab40ae7
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bitstring.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
THE SOFTWARE.
"""

__version__ = "3.1.4"
__version__ = "3.1.5"

__author__ = "Scott Griffiths"

Expand Down
7 changes: 7 additions & 0 deletions release_notes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
bitstring module version history
--------------------------------

---------------------------------------
May 17th 2016: version 3.1.5 released
---------------------------------------

* Support initialisation from an array.
* Added a separate LICENSE file.

---------------------------------------
March 19th 2016: version 3.1.4 released
---------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
'For Python 2.4 / 2.5 please use bitstring version 1.0 instead.')

setup(name='bitstring',
version='3.1.4',
version='3.1.5',
description='Simple construction, analysis and modification of binary data.',
author='Scott Griffiths',
author_email='dr.scottgriffiths@gmail.com',
Expand Down
2 changes: 1 addition & 1 deletion test/test_bitstring.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

class ModuleData(unittest.TestCase):
def testVersion(self):
self.assertEqual(bitstring.__version__, '3.1.4')
self.assertEqual(bitstring.__version__, '3.1.5')

def testAll(self):
exported = ['ConstBitArray', 'ConstBitStream', 'BitStream', 'BitArray',
Expand Down

0 comments on commit ab40ae7

Please sign in to comment.