diff --git a/ChangeLog b/ChangeLog index f795793afa99f02d928a7f8b8701623188a58e69..46e708e61e570d3c06ee728da9450214fe861c04 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2013-03-19, v0.2.5 + * Add support for private images + * Only use the token to authenticate to synnefo + * Show the user-provided info in the confirmation dialog of the wizard + * Fix minor typos & bugs + 2013-03-06, v0.2.4 * Rename README.rst to README * Enforce raw image format in libguestfs diff --git a/docs/conf.py b/docs/conf.py index b23fa732d3bc48ccc768732c3fe780c3fb8e559d..a27b15c7610ec72176d645b7733688176df45df9 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,9 +50,9 @@ copyright = u'2012, 2013 GRNET S.A. All rights reserved' # built documents. # # The short X.Y version. -version = '0.2.4' +version = '0.2.5' # The full version, including alpha/beta/rc tags. -release = '0.2.4' +release = '0.2.5' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/image_creator/__init__.py b/image_creator/__init__.py index ada5b77c591d0e771d547295dc7ca348e0f4e7c4..6bff5b189d907f06ce82229524f989f268bbb61c 100644 --- a/image_creator/__init__.py +++ b/image_creator/__init__.py @@ -31,6 +31,6 @@ # interpreted as representing official policies, either expressed # or implied, of GRNET S.A. -__version__ = '0.2.4' +__version__ = '0.2.5' # vim: set sta sts=4 shiftwidth=4 sw=4 et ai :