diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1ed6320..1cd70d6 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,11 @@ Release History =============== +0.6.3 (2017-01-29) +------------------ + +* Support for transparent PNG images has been added (lsb and lsbset modules). + 0.6.2 (2017-01-19) ------------------ diff --git a/README.rst b/README.rst index e6d3b32..d9aec4f 100644 --- a/README.rst +++ b/README.rst @@ -4,7 +4,8 @@ Stéganô .. image:: https://api.travis-ci.org/cedricbonhomme/Stegano.svg?branch=master :target: https://travis-ci.org/cedricbonhomme/Stegano -A Python Steganography module. +`Stéganô `_, a Python Steganography +module. Installation @@ -14,8 +15,8 @@ Installation $ sudo pip install Stegano -You will be able to use `Stéganô `_ -in your Python programs or as a command line tool. +You will be able to use Stéganô in your Python programs or as a command line +tool. Usage diff --git a/docs/conf.py b/docs/conf.py index ab5ddee..e0865ef 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,7 +50,7 @@ copyright = u'2012-2017, Cédric Bonhomme' # The short X.Y version. version = '0.6' # The full version, including alpha/beta/rc tags. -release = '0.6.2' +release = '0.6.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 04cd3eb..7f80d85 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ with open('CHANGELOG.rst', 'r') as f: setup( name='Stegano', - version='0.6.2', + version='0.6.3', author='Cédric Bonhomme', author_email='cedric@cedricbonhomme.org', packages=packages,