Bumped the version number to 0.3(-dev).

pull/34/merge
Christian Jacobs 2015-10-04 00:32:00 +01:00
rodzic 45abb28e38
commit 165edd5023
4 zmienionych plików z 7 dodań i 7 usunięć

Wyświetl plik

@ -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

Wyświetl plik

@ -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.

Wyświetl plik

@ -252,7 +252,7 @@ class ADIF:
<adif_ver:%d>%s
<programid:5>PyQSO
<programversion:3>0.2
<programversion:3>0.3
<eoh>\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("""
<adif_ver:3>1.0
<programid:5>PyQSO
<programversion:3>0.2
<programversion:3>0.3
<eoh>
<call:7>TEST123
<qso_date:8>20120402
@ -597,7 +597,7 @@ class TestADIF(unittest.TestCase):
assert("""
<adif_ver:3>1.0
<programid:5>PyQSO
<programversion:3>0.2
<programversion:3>0.3
<eoh>
<call:7>TEST123
<qso_date:8>20120402

Wyświetl plik

@ -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',