Updated module version number.

This commit is contained in:
Cédric Bonhomme 2016-08-25 08:31:40 +02:00
parent c6eb521be5
commit 3531769483
No known key found for this signature in database
GPG key ID: A1CB94DE57B7A70D
6 changed files with 10 additions and 5 deletions

View file

@ -1,6 +1,11 @@
Release History Release History
=============== ===============
0.6.1 (2016-08-25)
------------------
* reorganization of the steganalysis sub-module.
0.6 (2016-08-04) 0.6 (2016-08-04)
------------------ ------------------

View file

@ -62,4 +62,4 @@ Running the tests
Contact Contact
------- -------
`My home page <https://www.cedricbonhomme.org>`_. `Cédric Bonhomme <https://www.cedricbonhomme.org>`_.

View file

@ -50,7 +50,7 @@ copyright = u'2012-2016, Cédric Bonhomme'
# The short X.Y version. # The short X.Y version.
version = '0.6' version = '0.6'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '0.6' release = '0.6.1'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.

View file

@ -28,7 +28,7 @@ with open('CHANGELOG.rst', 'r') as f:
setup( setup(
name='Stegano', name='Stegano',
version='0.6', version='0.6.1',
author='Cédric Bonhomme', author='Cédric Bonhomme',
author_email='cedric@cedricbonhomme.org', author_email='cedric@cedricbonhomme.org',
packages=packages, packages=packages,

Binary file not shown.

After

Width:  |  Height:  |  Size: 400 KiB

View file

@ -55,7 +55,7 @@ class TestEXIFHeader(unittest.TestCase):
self.assertEqual(message, message) self.assertEqual(message, message)
def test_with_image_without_exif_data(self): def test_with_image_without_exif_data(self):
secret = exifHeader.hide("./tests/sample-files/Elisha-Cuthbert.jpg", secret = exifHeader.hide("./tests/sample-files/Lenna.jpg",
"./image.jpg", secret_message="") "./image.jpg", secret_message="")
#secret.save(""./image.png"") #secret.save(""./image.png"")
@ -67,7 +67,7 @@ class TestEXIFHeader(unittest.TestCase):
text_file_to_hide = "./tests/sample-files/lorem_ipsum.txt" text_file_to_hide = "./tests/sample-files/lorem_ipsum.txt"
with open(text_file_to_hide, "rb") as f: with open(text_file_to_hide, "rb") as f:
message = f.read() message = f.read()
secret = exifHeader.hide("./tests/sample-files/Elisha-Cuthbert.jpg", secret = exifHeader.hide("./tests/sample-files/20160505T130442.jpg",
img_enc="./image.jpg", img_enc="./image.jpg",
secret_file=text_file_to_hide) secret_file=text_file_to_hide)