Bump the version to 0.2 in preparation for release.

pull/32/head
Christian Jacobs 2015-02-08 15:54:37 +00:00
rodzic 0ef0a47ef5
commit 0f1bffc5ea
3 zmienionych plików z 6 dodań i 6 usunięć

Wyświetl plik

@ -49,7 +49,7 @@ class PyQSO(Gtk.Window):
""" Set up the main (root) window, start the event loop, and open a logbook (if the logbook's path is specified by the user in the command line). """
# Call the constructor of the super class (Gtk.Window)
Gtk.Window.__init__(self, title="PyQSO 0.2a-dev")
Gtk.Window.__init__(self, title="PyQSO 0.2")
# Get any application-specific preferences from the configuration file
config = ConfigParser.ConfigParser()
@ -115,7 +115,7 @@ class PyQSO(Gtk.Window):
about.set_modal(True)
about.set_transient_for(parent=self)
about.set_program_name("PyQSO")
about.set_version("0.2a-dev")
about.set_version("0.2")
about.set_authors(["Christian 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

@ -212,7 +212,7 @@ class ADIF:
<adif_ver:%d>%s
<programid:5>PyQSO
<programversion:8>0.2a-dev
<programversion:3>0.2
<eoh>\n""" % (dt, len(records), len(str(ADIF_VERSION)), ADIF_VERSION))
# Then write each log to the file.
@ -426,7 +426,7 @@ class TestADIF(unittest.TestCase):
assert("""
<adif_ver:3>1.0
<programid:5>PyQSO
<programversion:8>0.2a-dev
<programversion:3>0.2
<eoh>
<call:7>TEST123
<qso_date:8>20120402
@ -466,7 +466,7 @@ class TestADIF(unittest.TestCase):
assert("""
<adif_ver:3>1.0
<programid:5>PyQSO
<programversion:8>0.2a-dev
<programversion:3>0.2
<eoh>
<call:7>TEST123
<qso_date:8>20120402

Wyświetl plik

@ -21,7 +21,7 @@
from distutils.core import setup
setup(name='PyQSO',
version='0.2a-dev',
version='0.2',
description='A contact logging tool for amateur radio operators.',
author='Christian Jacobs',
url='https://github.com/ctjacobs/pyqso',