Updated header informations.

This commit is contained in:
Cédric Bonhomme 2016-03-12 23:58:19 +01:00
parent ed7877ec73
commit f582d47e6c
No known key found for this signature in database
GPG key ID: A1CB94DE57B7A70D
11 changed files with 17 additions and 12 deletions

View file

@ -1,9 +1,14 @@
Release History Release History
=============== ===============
0.4.5 (2015-12-23) 0.4.6 (2016-03-12)
------------------ ------------------
* bugfix when the length of the message to hide is not divisible by 3,
for the slsb and slsbset module.
0.4.5 (2015-12-23)
------------------
* bugfix. * bugfix.
0.4.4 (2015-12-23) 0.4.4 (2015-12-23)
@ -12,7 +17,6 @@ Release History
* new project home page; * new project home page;
* minor updated to the documentation. * minor updated to the documentation.
0.4.3 (2015-10-06) 0.4.3 (2015-10-06)
------------------ ------------------

View file

@ -2,7 +2,7 @@
#-*- coding: utf-8 -*- #-*- coding: utf-8 -*-
# Stéganô - Stéganô is a basic Python Steganography module. # Stéganô - Stéganô is a basic Python Steganography module.
# Copyright (C) 2010-2015 Cédric Bonhomme - https://www.cedricbonhomme.org # Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org
# #
# For more information : https://github.com/cedricbonhomme/Stegano # For more information : https://github.com/cedricbonhomme/Stegano
# #

View file

@ -2,7 +2,7 @@
#-*- coding: utf-8 -*- #-*- coding: utf-8 -*-
# Stéganô - Stéganô is a basic Python Steganography module. # Stéganô - Stéganô is a basic Python Steganography module.
# Copyright (C) 2010-2015 Cédric Bonhomme - https://www.cedricbonhomme.org # Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org
# #
# For more information : https://github.com/cedricbonhomme/Stegano # For more information : https://github.com/cedricbonhomme/Stegano
# #

View file

@ -2,7 +2,7 @@
#-*- coding: utf-8 -*- #-*- coding: utf-8 -*-
# Stéganô - Stéganô is a basic Python Steganography module. # Stéganô - Stéganô is a basic Python Steganography module.
# Copyright (C) 2010-2015 Cédric Bonhomme - https://www.cedricbonhomme.org # Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org
# #
# For more information : https://github.com/cedricbonhomme/Stegano # For more information : https://github.com/cedricbonhomme/Stegano
# #

View file

@ -24,7 +24,7 @@ with open('CHANGELOG.rst', 'r') as f:
setup( setup(
name='Stegano', name='Stegano',
version='0.4.5', version='0.4.6',
author='Cédric Bonhomme', author='Cédric Bonhomme',
author_email='cedric@cedricbonhomme.org', author_email='cedric@cedricbonhomme.org',
packages=packages, packages=packages,
@ -44,6 +44,7 @@ setup(
"Operating System :: OS Independent", "Operating System :: OS Independent",
"Programming Language :: Python :: 2.7", "Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)" "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"
] ]
) )

View file

@ -2,7 +2,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Stéganô - Stéganô is a basic Python Steganography module. # Stéganô - Stéganô is a basic Python Steganography module.
# Copyright (C) 2010-2015 Cédric Bonhomme - https://www.cedricbonhomme.org # Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org
# #
# For more information : https://github.com/cedricbonhomme/Stegano # For more information : https://github.com/cedricbonhomme/Stegano
# #

View file

@ -2,7 +2,7 @@
#-*- coding: utf-8 -*- #-*- coding: utf-8 -*-
# Stéganô - Stéganô is a basic Python Steganography module. # Stéganô - Stéganô is a basic Python Steganography module.
# Copyright (C) 2010-2015 Cédric Bonhomme - https://www.cedricbonhomme.org # Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org
# #
# For more information : https://github.com/cedricbonhomme/Stegano # For more information : https://github.com/cedricbonhomme/Stegano
# #

View file

@ -2,7 +2,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Stéganô - Stéganô is a basic Python Steganography module. # Stéganô - Stéganô is a basic Python Steganography module.
# Copyright (C) 2010-2015 Cédric Bonhomme - https://www.cedricbonhomme.org # Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org
# #
# For more information : https://github.com/cedricbonhomme/Stegano # For more information : https://github.com/cedricbonhomme/Stegano
# #

View file

@ -2,7 +2,7 @@
#-*- coding: utf-8 -*- #-*- coding: utf-8 -*-
# Stéganô - Stéganô is a basic Python Steganography module. # Stéganô - Stéganô is a basic Python Steganography module.
# Copyright (C) 2010-2015 Cédric Bonhomme - https://www.cedricbonhomme.org # Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org
# #
# For more information : https://github.com/cedricbonhomme/Stegano # For more information : https://github.com/cedricbonhomme/Stegano
# #

View file

@ -2,7 +2,7 @@
#-*- coding: utf-8 -*- #-*- coding: utf-8 -*-
# Stéganô - Stéganô is a basic Python Steganography module. # Stéganô - Stéganô is a basic Python Steganography module.
# Copyright (C) 2010-2015 Cédric Bonhomme - https://www.cedricbonhomme.org # Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org
# #
# For more information : https://github.com/cedricbonhomme/Stegano # For more information : https://github.com/cedricbonhomme/Stegano
# #

View file

@ -2,7 +2,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Stéganô - Stéganô is a basic Python Steganography module. # Stéganô - Stéganô is a basic Python Steganography module.
# Copyright (C) 2010-2015 Cédric Bonhomme - https://www.cedricbonhomme.org # Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org
# #
# For more information : https://github.com/cedricbonhomme/Stegano # For more information : https://github.com/cedricbonhomme/Stegano
# #