Skip to content

Commit

Permalink
Version 0.07
Browse files Browse the repository at this point in the history
  • Loading branch information
ajolma committed Dec 9, 2018
1 parent 066d03c commit 1867fb1
Show file tree
Hide file tree
Showing 15 changed files with 20 additions and 15 deletions.
7 changes: 6 additions & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Revision history for Perl extension Geo::GDAL::FFI

0.06
0.07 Dec 9, 2018
- Layer GetExtent, GetName, GetParentDataset
- Dataset ExecuteSQL
- Geometry GetEnvelope, GetEnvelope3D

0.06 Nov 8, 2018
- BREAKING CHANGE: GetDriver and Open are not methods any more.
- Refuse to handle 64 bit int data in non-64 bit Perl
- Handle CSL arguments in GDAL API
Expand Down
2 changes: 1 addition & 1 deletion lib/Geo/GDAL/FFI.pm
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use Geo::GDAL::FFI::GeomFieldDefn;
use Geo::GDAL::FFI::Feature;
use Geo::GDAL::FFI::Geometry;

our $VERSION = 0.0601;
our $VERSION = 0.0700;

our @ISA = qw(Exporter);
our @EXPORT_OK = qw(@errors GetVersionInfo SetErrorHandling UnsetErrorHandling
Expand Down
2 changes: 1 addition & 1 deletion lib/Geo/GDAL/FFI/Band.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;
use Carp;
use FFI::Platypus::Buffer;

our $VERSION = 0.0601;
our $VERSION = 0.0700;

sub DESTROY {
my $self = shift;
Expand Down
2 changes: 1 addition & 1 deletion lib/Geo/GDAL/FFI/Dataset.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use Carp;
use base 'Geo::GDAL::FFI::Object';
use Scalar::Util qw /blessed/;

our $VERSION = 0.0601;
our $VERSION = 0.0700;

sub DESTROY {
my $self = shift;
Expand Down
2 changes: 1 addition & 1 deletion lib/Geo/GDAL/FFI/Driver.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;
use Carp;
use base 'Geo::GDAL::FFI::Object';

our $VERSION = 0.0601;
our $VERSION = 0.0700;

sub GetName {
my $self = shift;
Expand Down
2 changes: 1 addition & 1 deletion lib/Geo/GDAL/FFI/Feature.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use Carp;
use Encode qw(decode encode);
use FFI::Platypus::Buffer;

our $VERSION = 0.0601;
our $VERSION = 0.0700;

sub new {
my ($class, $defn) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Geo/GDAL/FFI/FeatureDefn.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use Carp;

our $VERSION = 0.0601;
our $VERSION = 0.0700;

sub new {
my ($class, $args) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Geo/GDAL/FFI/FieldDefn.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use Carp;

our $VERSION = 0.0601;
our $VERSION = 0.0700;

sub new {
my ($class, $args) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Geo/GDAL/FFI/GeomFieldDefn.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use Carp;

our $VERSION = 0.0601;
our $VERSION = 0.0700;

sub new {
my ($class, $args) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Geo/GDAL/FFI/Geometry.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use Carp;

our $VERSION = 0.0601;
our $VERSION = 0.0700;

my %ref;

Expand Down
2 changes: 1 addition & 1 deletion lib/Geo/GDAL/FFI/Layer.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;
use Carp;
use base 'Geo::GDAL::FFI::Object';

our $VERSION = 0.0601;
our $VERSION = 0.0700;

sub DESTROY {
my $self = shift;
Expand Down
2 changes: 1 addition & 1 deletion lib/Geo/GDAL/FFI/Object.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use Carp;

our $VERSION = 0.0601;
our $VERSION = 0.0700;

sub GetDescription {
my $self = shift;
Expand Down
2 changes: 1 addition & 1 deletion lib/Geo/GDAL/FFI/SpatialReference.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use Carp;

our $VERSION = 0.0601;
our $VERSION = 0.0700;

sub new {
my ($class, $arg, @arg) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Geo/GDAL/FFI/VSI.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use Carp;
use FFI::Platypus::Buffer;
require Exporter;

our $VERSION = 0.0601;
our $VERSION = 0.0700;

our @ISA = qw(Exporter);
our @EXPORT_OK = qw(Mkdir Rmdir ReadDir FOpen Unlink Rename);
Expand Down
2 changes: 1 addition & 1 deletion lib/Geo/GDAL/FFI/VSI/File.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use Carp;
use FFI::Platypus::Buffer;
use FFI::Platypus::Declare;

our $VERSION = 0.06;
our $VERSION = 0.0700;

sub Open {
my ($class, $path, $access) = @_;
Expand Down

0 comments on commit 1867fb1

Please sign in to comment.