diff --git a/bin/pyqso b/bin/pyqso index 9a5efcc..f8c1358 100755 --- a/bin/pyqso +++ b/bin/pyqso @@ -117,7 +117,7 @@ class PyQSO(Gtk.Window): about.set_modal(True) about.set_transient_for(parent=self) about.set_program_name("PyQSO") - about.set_version("0.2") + about.set_version("0.3") about.set_authors(["Christian T. Jacobs (M6RDG)"]) about.set_license("""This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/docs/source/conf.py b/docs/source/conf.py index b2a7956..1492957 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -58,9 +58,9 @@ copyright = u'2015, Christian T. Jacobs' # built documents. # # The short X.Y version. -version = '0.2' +version = '0.3' # The full version, including alpha/beta/rc tags. -release = '0.2' +release = '0.3' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pyqso/adif.py b/pyqso/adif.py index 7680914..8ff1d86 100644 --- a/pyqso/adif.py +++ b/pyqso/adif.py @@ -252,7 +252,7 @@ class ADIF: %s PyQSO -0.2 +0.3 \n""" % (dt, len(records), len(str(ADIF_VERSION)), ADIF_VERSION)) # Then write each log to the file. @@ -556,7 +556,7 @@ class TestADIF(unittest.TestCase): assert(""" 1.0 PyQSO -0.2 +0.3 TEST123 20120402 @@ -597,7 +597,7 @@ class TestADIF(unittest.TestCase): assert(""" 1.0 PyQSO -0.2 +0.3 TEST123 20120402 diff --git a/setup.py b/setup.py index a8884dd..9883e5b 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ from distutils.core import setup setup(name='PyQSO', - version='0.2', + version='0.3', description='A contact logging tool for amateur radio operators.', author='Christian T. Jacobs', author_email='c.jacobs10@imperial.ac.uk',