diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2015-01-25 07:11:37 -0500 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2015-01-25 07:11:37 -0500 |
commit | 444fa720feb6ca4aa1b4d6ab9875a480e8cdbc7a (patch) | |
tree | 697c458a935a102e26e61926c2b3a873162b1bf9 | |
parent | ac2d9d7cebc4a8faeb1ba287d7b7b04e45255a82 (diff) | |
download | gpsd-444fa720feb6ca4aa1b4d6ab9875a480e8cdbc7a.tar.gz |
API major version bump.
-rw-r--r-- | gps.h | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -29,17 +29,18 @@ extern "C" { * 5.0 - MAXCHANNELS bumped from 20 to 32 for GLONASS (Mar 2011, release 2.96) * gps_open() becomes reentrant, what gps_open_r() used to be. * gps_poll() removed in favor of gps_read(). The raw hook is gone. + * (Aug 2011, release 3.0) * 5.1 - GPS_PATH_MAX uses system PATH_MAX; split24 flag added. New * model and serial members in part B of AIS type 24, conforming * with ITU-R 1371-4. New timedrift structure (Nov 2013, release 3.10). - * 5.2 - AIS type 6 and 8 get 'structured' flag; GPS_PATH_MAX + * 6.0 - AIS type 6 and 8 get 'structured' flag; GPS_PATH_MAX * shortened because devices has moved out of the tail union. Sentence * tag fields dropped from emitted JSON. The shape of the skyview * structure has changed to make working with the satellites-used * bits less confusing. (January 2015, release 3.12). */ -#define GPSD_API_MAJOR_VERSION 5 /* bump on incompatible changes */ -#define GPSD_API_MINOR_VERSION 2 /* bump on compatible changes */ +#define GPSD_API_MAJOR_VERSION 6 /* bump on incompatible changes */ +#define GPSD_API_MINOR_VERSION 0 /* bump on compatible changes */ #define MAXCHANNELS 72 /* must be > 12 GPS + 12 GLONASS + 2 WAAS */ #define GPS_PRNMAX 32 /* above this number are SBAS satellites */ |