The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
Revision history for Net::GPSD (aka GPS::gpsd before version 0.14)

2006-04-01 v0.15
  * Updated pod for GPSD.pm mostly just the examples are linked

2006-03-29 v0.14
  * Renamed GPS::gpsd to Net::GPSD

2006-03-22 v0.13
  * Internel version numbers were wrong

2006-03-22 v0.12
  * Error in point copy for initialization
    < $self->{$_}=$data->{$_};
    > $self->{$_}=[@{$data->{$_}}];

2006-03-21 v0.11
  * simplified GPSD default_handler
  * pods for ./bin/ examples
  * hopefully fixed META.yml error

2006-03-19 v0.10
  * moved examples to ./bin/ folder

2006-03-17 v0.9
  * fixed 1 warning

2006-03-15 v0.8
  * CPAN changes.  Now automakes with CPAN!
  * moved Report::http under gpsd namespace
  * moved modules to the lib folder
  * renamed tgz file to GPS-gpsd-X.XX.tgz format

2006-03-11 v0.7
  * made a bunch of changes to the distance calculations
  * Fixes error in in the parse routine 
     < $data{$1}=[split(/ /, $2)];
     > $data{$1}=[split(/\s+/, $2)];
  * Updates to CPAN install capability
  * Updates to documentation
  * Update to the subscribe interface

2006-02-23 v0.6 (No user interface changes)
  * Updates the pod documentation so that it displays better on CPAN.
  * Moved code from GPS::gpsd::Satellite->list to GPS::gpsd->getsatellitelist. 
  * Documentation, Documentation, Documentation...

2006-02-22 v0.5 (Heavy user interface changes)
  * Modified a few interface names to meet my tastes register->subscribe
  * Documentation, Documentation, Documentation...

2006-02-21 v0.4 (Heavy user interface changes)
  * First CPAN Documentation Begins
  * Added satellite object interface

2006-02-19 v0.3 (Heavy user interface changes)
  * Added Point object interface

2006-02 v0.2 (Heavy user interface changes)

2006-02 v0.1
  * Original version on CPAN.