mirror of
https://github.com/cedricbonhomme/Stegano.git
synced 2025-05-12 00:58:32 +02:00
Updated module version number.
This commit is contained in:
parent
c6eb521be5
commit
3531769483
6 changed files with 10 additions and 5 deletions
|
@ -1,6 +1,11 @@
|
|||
Release History
|
||||
===============
|
||||
|
||||
0.6.1 (2016-08-25)
|
||||
------------------
|
||||
|
||||
* reorganization of the steganalysis sub-module.
|
||||
|
||||
0.6 (2016-08-04)
|
||||
------------------
|
||||
|
||||
|
|
|
@ -62,4 +62,4 @@ Running the tests
|
|||
Contact
|
||||
-------
|
||||
|
||||
`My home page <https://www.cedricbonhomme.org>`_.
|
||||
`Cédric Bonhomme <https://www.cedricbonhomme.org>`_.
|
||||
|
|
|
@ -50,7 +50,7 @@ copyright = u'2012-2016, Cédric Bonhomme'
|
|||
# The short X.Y version.
|
||||
version = '0.6'
|
||||
# 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
|
||||
# for a list of supported languages.
|
||||
|
|
2
setup.py
2
setup.py
|
@ -28,7 +28,7 @@ with open('CHANGELOG.rst', 'r') as f:
|
|||
|
||||
setup(
|
||||
name='Stegano',
|
||||
version='0.6',
|
||||
version='0.6.1',
|
||||
author='Cédric Bonhomme',
|
||||
author_email='cedric@cedricbonhomme.org',
|
||||
packages=packages,
|
||||
|
|
BIN
tests/sample-files/Lenna.jpg
Normal file
BIN
tests/sample-files/Lenna.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 400 KiB |
|
@ -55,7 +55,7 @@ class TestEXIFHeader(unittest.TestCase):
|
|||
self.assertEqual(message, message)
|
||||
|
||||
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="")
|
||||
#secret.save(""./image.png"")
|
||||
|
||||
|
@ -67,7 +67,7 @@ class TestEXIFHeader(unittest.TestCase):
|
|||
text_file_to_hide = "./tests/sample-files/lorem_ipsum.txt"
|
||||
with open(text_file_to_hide, "rb") as f:
|
||||
message = f.read()
|
||||
secret = exifHeader.hide("./tests/sample-files/Elisha-Cuthbert.jpg",
|
||||
secret = exifHeader.hide("./tests/sample-files/20160505T130442.jpg",
|
||||
img_enc="./image.jpg",
|
||||
secret_file=text_file_to_hide)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue