mirror of
https://github.com/cedricbonhomme/Stegano.git
synced 2025-05-14 01:38:31 +02:00
Bumped version number.
This commit is contained in:
parent
e4f9a08cd7
commit
eeb8132b4b
4 changed files with 10 additions and 5 deletions
|
@ -1,6 +1,11 @@
|
||||||
Release History
|
Release History
|
||||||
===============
|
===============
|
||||||
|
|
||||||
|
0.5.3 (2016-05-19)
|
||||||
|
------------------
|
||||||
|
|
||||||
|
* reorganization of all modules. No impact for the users of Stegano.
|
||||||
|
|
||||||
0.5.2 (2016-05-18)
|
0.5.2 (2016-05-18)
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
|
|
|
@ -33,7 +33,7 @@ appropriate steganography technique. For example:
|
||||||
.. code:: python
|
.. code:: python
|
||||||
|
|
||||||
>>> from stegano import lsb
|
>>> from stegano import lsb
|
||||||
>>> secret = slsb.hide("./tests/sample-files/Lenna.png", "Hello World")
|
>>> secret = lsb.hide("./tests/sample-files/Lenna.png", "Hello World")
|
||||||
>>> secret.save("./Lenna-secret.png")
|
>>> secret.save("./Lenna-secret.png")
|
||||||
|
|
||||||
|
|
||||||
|
@ -44,7 +44,7 @@ Use Stéganô as a program
|
||||||
|
|
||||||
$ lsb --hide -i ./tests/sample-files/Lenna.png -o Lena1.png -m "Secret Message"
|
$ lsb --hide -i ./tests/sample-files/Lenna.png -o Lena1.png -m "Secret Message"
|
||||||
|
|
||||||
Hide the message with Sieve of Eratosthenes:
|
Hide the message with the Sieve of Eratosthenes:
|
||||||
|
|
||||||
.. code:: bash
|
.. code:: bash
|
||||||
|
|
||||||
|
|
|
@ -48,9 +48,9 @@ copyright = u'2012-2016, Cédric Bonhomme'
|
||||||
# built documents.
|
# built documents.
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '0.5.1'
|
version = '0.5.3'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = '0.5.1'
|
release = '0.5.3'
|
||||||
|
|
||||||
# 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.
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -28,7 +28,7 @@ with open('CHANGELOG.rst', 'r') as f:
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='Stegano',
|
name='Stegano',
|
||||||
version='0.5.2',
|
version='0.5.3',
|
||||||
author='Cédric Bonhomme',
|
author='Cédric Bonhomme',
|
||||||
author_email='cedric@cedricbonhomme.org',
|
author_email='cedric@cedricbonhomme.org',
|
||||||
packages=packages,
|
packages=packages,
|
||||||
|
|
Loading…
Add table
Reference in a new issue