diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index c9ea386..1ed6320 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,6 +1,12 @@
Release History
===============
+0.6.2 (2017-01-19)
+------------------
+
+* bugfix: solved a bug when the image data is coming via byte streams (ByteIO),
+ for the exifHeader hiding method.
+
0.6.1 (2016-08-25)
------------------
diff --git a/bin/lsb b/bin/lsb
index fd9eeeb..0987852 100755
--- a/bin/lsb
+++ b/bin/lsb
@@ -2,7 +2,7 @@
#-*- coding: utf-8 -*-
# Stéganô - Stéganô is a basic Python Steganography module.
-# Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org
+# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org
#
# For more information : https://github.com/cedricbonhomme/Stegano
#
diff --git a/bin/lsb-set b/bin/lsb-set
index 5421e33..bf1a7a0 100755
--- a/bin/lsb-set
+++ b/bin/lsb-set
@@ -2,7 +2,7 @@
#-*- coding: utf-8 -*-
# Stéganô - Stéganô is a basic Python Steganography module.
-# Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org
+# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org
#
# For more information : https://github.com/cedricbonhomme/Stegano
#
diff --git a/bin/steganalysis-parity b/bin/steganalysis-parity
index 96284a8..d5c4b01 100644
--- a/bin/steganalysis-parity
+++ b/bin/steganalysis-parity
@@ -2,7 +2,7 @@
#-*- coding: utf-8 -*-
# Stéganô - Stéganô is a basic Python Steganography module.
-# Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org
+# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org
#
# For more information : https://github.com/cedricbonhomme/Stegano
#
diff --git a/bin/steganalysis-statistics b/bin/steganalysis-statistics
index bbc1058..7e7faa7 100644
--- a/bin/steganalysis-statistics
+++ b/bin/steganalysis-statistics
@@ -2,7 +2,7 @@
#-*- coding: utf-8 -*-
# Stéganô - Stéganô is a basic Python Steganography module.
-# Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org
+# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org
#
# For more information : https://github.com/cedricbonhomme/Stegano
#
diff --git a/docs/conf.py b/docs/conf.py
index 405ec33..ab5ddee 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -41,7 +41,7 @@ master_doc = 'index'
# General information about the project.
project = u'Stéganô'
-copyright = u'2012-2016, Cédric Bonhomme'
+copyright = u'2012-2017, Cédric Bonhomme'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
@@ -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.1'
+release = '0.6.2'
# 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 c33acdc..04cd3eb 100644
--- a/setup.py
+++ b/setup.py
@@ -35,7 +35,7 @@ with open('CHANGELOG.rst', 'r') as f:
setup(
name='Stegano',
- version='0.6.1',
+ version='0.6.2',
author='Cédric Bonhomme',
author_email='cedric@cedricbonhomme.org',
packages=packages,
diff --git a/stegano/exifHeader/exifHeader.py b/stegano/exifHeader/exifHeader.py
index bf9eb74..6133c55 100644
--- a/stegano/exifHeader/exifHeader.py
+++ b/stegano/exifHeader/exifHeader.py
@@ -2,7 +2,7 @@
#-*- coding: utf-8 -*-
# Stéganô - Stéganô is a basic Python Steganography module.
-# Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org
+# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org
#
# For more information : https://github.com/cedricbonhomme/Stegano
#
@@ -20,8 +20,9 @@
# along with this program. If not, see
__author__ = "Cedric Bonhomme"
-__version__ = "$Revision: 0.2.1 $"
+__version__ = "$Revision: 0.2.2 $"
__date__ = "$Date: 2016/05/26 $"
+__revision__ = "$Date: 2017/01/18 $"
__license__ = "GPLv3"
from PIL import Image
diff --git a/stegano/lsb/lsb.py b/stegano/lsb/lsb.py
index 229d8c9..917e5ce 100755
--- a/stegano/lsb/lsb.py
+++ b/stegano/lsb/lsb.py
@@ -2,7 +2,7 @@
#-*- coding: utf-8 -*-
# Stéganô - Stéganô is a basic Python Steganography module.
-# Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org
+# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org
#
# For more information : https://github.com/cedricbonhomme/Stegano
#
diff --git a/stegano/lsbset/generators.py b/stegano/lsbset/generators.py
index d158614..bc52aff 100644
--- a/stegano/lsbset/generators.py
+++ b/stegano/lsbset/generators.py
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
# Stéganô - Stéganô is a basic Python Steganography module.
-# Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org
+# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org
#
# For more information : https://github.com/cedricbonhomme/Stegano
#
diff --git a/stegano/lsbset/lsbset.py b/stegano/lsbset/lsbset.py
index d4047b1..038abc1 100644
--- a/stegano/lsbset/lsbset.py
+++ b/stegano/lsbset/lsbset.py
@@ -2,7 +2,7 @@
#-*- coding: utf-8 -*-
# Stéganô - Stéganô is a basic Python Steganography module.
-# Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org
+# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org
#
# For more information : https://github.com/cedricbonhomme/Stegano
#
diff --git a/stegano/red/red.py b/stegano/red/red.py
index d3429f3..c33afc3 100755
--- a/stegano/red/red.py
+++ b/stegano/red/red.py
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
# Stéganô - Stéganô is a basic Python Steganography module.
-# Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org
+# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org
#
# For more information : https://github.com/cedricbonhomme/Stegano
#
diff --git a/stegano/steganalysis/parity.py b/stegano/steganalysis/parity.py
index a3ca3c3..ef0bf8c 100644
--- a/stegano/steganalysis/parity.py
+++ b/stegano/steganalysis/parity.py
@@ -2,7 +2,7 @@
#-*- coding: utf-8 -*-
# Stéganô - Stéganô is a basic Python Steganography module.
-# Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org
+# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org
#
# For more information : https://github.com/cedricbonhomme/Stegano
#
diff --git a/stegano/steganalysis/statistics.py b/stegano/steganalysis/statistics.py
index 73a151f..d3e622e 100644
--- a/stegano/steganalysis/statistics.py
+++ b/stegano/steganalysis/statistics.py
@@ -2,7 +2,7 @@
#-*- coding: utf-8 -*-
# Stéganô - Stéganô is a basic Python Steganography module.
-# Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org
+# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org
#
# For more information : https://github.com/cedricbonhomme/Stegano
#
diff --git a/stegano/tools.py b/stegano/tools.py
index 4762f0a..3ed74c0 100755
--- a/stegano/tools.py
+++ b/stegano/tools.py
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
# Stéganô - Stéganô is a basic Python Steganography module.
-# Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org
+# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org
#
# For more information : https://github.com/cedricbonhomme/Stegano
#
diff --git a/tests/test_exifHeader.py b/tests/test_exifHeader.py
index d609acf..b33b045 100644
--- a/tests/test_exifHeader.py
+++ b/tests/test_exifHeader.py
@@ -2,7 +2,7 @@
#-*- coding: utf-8 -*-
# Stéganô - Stéganô is a basic Python Steganography module.
-# Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org
+# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org
#
# For more information : https://github.com/cedricbonhomme/Stegano
#
@@ -20,8 +20,9 @@
# along with this program. If not, see
__author__ = "Cedric Bonhomme"
-__version__ = "$Revision: 0.1 $"
+__version__ = "$Revision: 0.2 $"
__date__ = "$Date: 2016/05/17 $"
+__revision__ = "$Date: 2017/01/18 $"
__license__ = "GPLv3"
import os
diff --git a/tests/test_lsb.py b/tests/test_lsb.py
index 08dfd26..97a965d 100644
--- a/tests/test_lsb.py
+++ b/tests/test_lsb.py
@@ -2,7 +2,7 @@
#-*- coding: utf-8 -*-
# Stéganô - Stéganô is a basic Python Steganography module.
-# Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org
+# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org
#
# For more information : https://github.com/cedricbonhomme/Stegano
#
diff --git a/tests/test_lsbset.py b/tests/test_lsbset.py
index 8d16f2f..ae8aa2b 100644
--- a/tests/test_lsbset.py
+++ b/tests/test_lsbset.py
@@ -2,7 +2,7 @@
#-*- coding: utf-8 -*-
# Stéganô - Stéganô is a basic Python Steganography module.
-# Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org
+# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org
#
# For more information : https://github.com/cedricbonhomme/Stegano
#
diff --git a/tests/test_red.py b/tests/test_red.py
index 8e0e880..9010865 100644
--- a/tests/test_red.py
+++ b/tests/test_red.py
@@ -2,7 +2,7 @@
#-*- coding: utf-8 -*-
# Stéganô - Stéganô is a basic Python Steganography module.
-# Copyright (C) 2010-2016 Cédric Bonhomme - https://www.cedricbonhomme.org
+# Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org
#
# For more information : https://github.com/cedricbonhomme/Stegano
#