From bb177677df08d384c55688ff91aa04a876e92755 Mon Sep 17 00:00:00 2001 From: Christian Jacobs Date: Fri, 4 Oct 2013 20:03:05 +0100 Subject: [PATCH] Moving PyQSO from version 0.1a to version 0.1b. --- bin/pyqso | 4 ++-- doc/manual.tex | 2 +- pyqso/adif.py | 4 ++-- setup.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/bin/pyqso b/bin/pyqso index d49edae..f3a7fce 100755 --- a/bin/pyqso +++ b/bin/pyqso @@ -47,7 +47,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.1a") + Gtk.Window.__init__(self, title="PyQSO 0.1b") # Get any application-specific preferences from the configuration file config = ConfigParser.ConfigParser() @@ -113,7 +113,7 @@ class PyQSO(Gtk.Window): about.set_modal(True) about.set_transient_for(parent=self) about.set_program_name("PyQSO") - about.set_version("0.1a") + about.set_version("0.1b") about.set_authors(["Christian Jacobs"]) 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/doc/manual.tex b/doc/manual.tex index eefb6eb..68626f5 100644 --- a/doc/manual.tex +++ b/doc/manual.tex @@ -34,7 +34,7 @@ \begin{center} \vspace*{5cm} \huge{PyQSO User Manual}\\\vspace*{5cm} -\LARGE{Version 0.1a} +\LARGE{Version 0.1b} \end{center} \end{titlepage} diff --git a/pyqso/adif.py b/pyqso/adif.py index 33faab7..85da3a1 100644 --- a/pyqso/adif.py +++ b/pyqso/adif.py @@ -201,7 +201,7 @@ class ADIF: %s PyQSO -0.1a +0.1b \n""" % (dt, len(records), ADIF_VERSION)) # Then write each log to the file. @@ -417,7 +417,7 @@ class TestADIF(unittest.TestCase): assert(""" 1.0 PyQSO -0.1a +0.1b TEST123 20120402 diff --git a/setup.py b/setup.py index 3fa8551..39bf0e9 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ from distutils.core import setup setup(name='PyQSO', - version='0.1a', + version='0.1b', description='A contact logging tool for amateur radio operators.', author='Christian Jacobs', url='https://github.com/ctjacobs/pyqso',