From eeb8132b4ba217c65ab5e35b89f71235aedfcf3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Bonhomme?= Date: Thu, 19 May 2016 22:38:07 +0200 Subject: [PATCH] Bumped version number. --- CHANGELOG.rst | 5 +++++ README.rst | 4 ++-- docs/conf.py | 4 ++-- setup.py | 2 +- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 302807c..11015d5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,11 @@ 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) ------------------ diff --git a/README.rst b/README.rst index 7e06204..2067518 100644 --- a/README.rst +++ b/README.rst @@ -33,7 +33,7 @@ appropriate steganography technique. For example: .. code:: python >>> 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") @@ -44,7 +44,7 @@ Use Stéganô as a program $ 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 diff --git a/docs/conf.py b/docs/conf.py index fd4e497..c40e2ee 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,9 +48,9 @@ # built documents. # # The short X.Y version. -version = '0.5.1' +version = '0.5.3' # 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 # for a list of supported languages. diff --git a/setup.py b/setup.py index cafe0aa..fb9f124 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ setup( name='Stegano', - version='0.5.2', + version='0.5.3', author='Cédric Bonhomme', author_email='cedric@cedricbonhomme.org', packages=packages,