summaryrefslogtreecommitdiff
path: root/gps
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2018-10-01 17:38:54 -0700
committerGary E. Miller <gem@rellim.com>2018-10-01 17:38:54 -0700
commitb5de89b6a14fa50710e39e10e48a7a633cf43fe3 (patch)
tree87f98df44228653ca157977043ff3626a83e6af5 /gps
parent41de45a3cff9412d272a023a3828503a2edeb798 (diff)
downloadgpsd-b5de89b6a14fa50710e39e10e48a7a633cf43fe3.tar.gz
Python clients: Opps 3.18~dev, not 3.18-dev.
A tilda, not a dash.
Diffstat (limited to 'gps')
-rw-r--r--gps/__init__.py2
-rw-r--r--gps/gps.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/gps/__init__.py b/gps/__init__.py
index c195be7e..f2882f4b 100644
--- a/gps/__init__.py
+++ b/gps/__init__.py
@@ -13,7 +13,7 @@ from .misc import *
api_major_version = 5 # bumped on incompatible changes
api_minor_version = 0 # bumped on compatible changes
-__version__ = '3.18-dev'
+__version__ = '3.18~dev'
# The 'client' module exposes some C utility functions for Python clients.
# The 'packet' module exposes the packet getter via a Python interface.
diff --git a/gps/gps.py b/gps/gps.py
index 1cfffb77..868e6d9f 100644
--- a/gps/gps.py
+++ b/gps/gps.py
@@ -182,7 +182,7 @@ class gps(gpscommon, gpsdata, gpsjson):
"Client interface to a running gpsd instance."
# module version, would be nice to automate the version
- __version__ = "3.18-dev"
+ __version__ = "3.18~dev"
def __init__(self, host="127.0.0.1", port=GPSD_PORT, verbose=0, mode=0,
reconnect=False):